@@ -74,7 +74,7 @@ public function testClean(): void
7474 $ input = ' <b>ASDF</b> !@#$%^&*()_+" \';:>< ' ;
7575
7676 isSame ('ASDF !@#$%^&*()_+" \';:>< ' , Str::clean ($ input ));
77- isSame ('asdf !@#$%^&*()_+ \\ " \\\';:>< ' , Str::clean ($ input , true , true ));
77+ isSame ('asdf !@#$%^&*()_+\" \\\';:>< ' , Str::clean ($ input , true , true ));
7878 }
7979
8080 public function testParseLines (): void
@@ -272,15 +272,15 @@ public function testEsc(): void
272272 {
273273 isSame (
274274 '<a href="/test">Test !@#$%^&*()_+\/</a> ' ,
275- Str::esc ('<a href="/test">Test !@#$%^&*()_+ \\ /</a> ' ),
275+ Str::esc ('<a href="/test">Test !@#$%^&*()_+\/</a> ' ),
276276 );
277277 }
278278
279279 public function testEscXML (): void
280280 {
281281 isSame (
282282 '<a href="/test">Test!@#$%^&*()_+\/</a> ' ,
283- Str::escXml ('<a href="/test">Test!@#$%^&*()_+ \\ /</a> ' ),
283+ Str::escXml ('<a href="/test">Test!@#$%^&*()_+\/</a> ' ),
284284 );
285285 }
286286
@@ -333,10 +333,10 @@ public function testTestName2Human(): void
333333 isSame ('Function IE Test ' , Str::testName2Human ('Test_FunctionIE_TestTest ' ));
334334 isSame ('Test Function IE Test ' , Str::testName2Human ('Test_testFunctionIE_TestTest ' ));
335335
336- isSame ('Function IE ' , Str::testName2Human ('\\ JBZoo \ \Test_FunctionIE_Test ' ));
337- isSame ('Function IE ' , Str::testName2Human ('\\ JBZoo \\ PHPHunit \ \Test_FunctionIE_Test ' ));
338- isSame ('Function IE ' , Str::testName2Human ('\\ JBZoo \\ PHPHunit \\ Some \ \Test_FunctionIE_Test ' ));
339- isSame ('Function IE ' , Str::testName2Human ('\\ JBZoo \\ PHPHunit \\ Some \\ Some \ \Test_FunctionIE_Test ' ));
336+ isSame ('Function IE ' , Str::testName2Human ('\JBZoo\Test_FunctionIE_Test ' ));
337+ isSame ('Function IE ' , Str::testName2Human ('\JBZoo\PHPHunit\Test_FunctionIE_Test ' ));
338+ isSame ('Function IE ' , Str::testName2Human ('\JBZoo\PHPHunit\Some\Test_FunctionIE_Test ' ));
339+ isSame ('Function IE ' , Str::testName2Human ('\JBZoo\PHPHunit\Some\Some\Test_FunctionIE_Test ' ));
340340 }
341341
342342 public function testGenerateUUID (): void
0 commit comments