Skip to content

Commit

Permalink
Remove space from test identifier, easier copy/paste filtering
Browse files Browse the repository at this point in the history
  • Loading branch information
sirreal committed Dec 19, 2023
1 parent d43ce28 commit 82f79f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/phpunit/tests/html-api/wpHtmlProcessorHtml5lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public function data_external_html5lib_tests() {
$case = $k + 1;
// strip .dat extension from filename
$test_suite = substr( $entry, 0, strlen( $entry ) - 4 );
yield "{$test_suite}/case {$case} - line {$test[0]}" => array_slice( $test, 1 );
yield "{$test_suite}/case{$case} - line {$test[0]}" => array_slice( $test, 1 );
}
}
closedir( $handle );
Expand Down

0 comments on commit 82f79f5

Please sign in to comment.