Changeset 59052
- Timestamp:
- 09/18/2024 02:53:32 PM (8 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/html-api/wpHtmlProcessorComments.php
r58734 r59052 20 20 * @dataProvider data_comments 21 21 */ 22 public function test_comment_processing( string $html, string $expected_comment_type, string $expected_modifiable_text, string$expected_tag = null ) {22 public function test_comment_processing( $html, $expected_comment_type, $expected_modifiable_text, $expected_tag = null ) { 23 23 $processor = WP_HTML_Processor::create_fragment( $html ); 24 24 $processor->next_token(); … … 54 54 * @dataProvider data_funky_comments 55 55 */ 56 public function test_funky_comment( string $html, string$expected_modifiable_text ) {56 public function test_funky_comment( $html, $expected_modifiable_text ) { 57 57 $processor = WP_HTML_Processor::create_fragment( $html ); 58 58 $processor->next_token();
Note: See TracChangeset
for help on using the changeset viewer.