From 82f79f57173f5885862393b5149adcafb85493c9 Mon Sep 17 00:00:00 2001 From: Jon Surrell Date: Tue, 19 Dec 2023 15:30:03 +0100 Subject: [PATCH] Remove space from test identifier, easier copy/paste filtering --- tests/phpunit/tests/html-api/wpHtmlProcessorHtml5lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/phpunit/tests/html-api/wpHtmlProcessorHtml5lib.php b/tests/phpunit/tests/html-api/wpHtmlProcessorHtml5lib.php index 7c5eca8aa154f..58856e15b7a2b 100644 --- a/tests/phpunit/tests/html-api/wpHtmlProcessorHtml5lib.php +++ b/tests/phpunit/tests/html-api/wpHtmlProcessorHtml5lib.php @@ -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 );