Skip to content

Commit

Permalink
Add test comment
Browse files Browse the repository at this point in the history
  • Loading branch information
CrazyMuffin committed Oct 30, 2023
1 parent 6e50cd5 commit df32105
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Utils/Strings.trim().phpt
Expand Up @@ -17,7 +17,7 @@ Assert::same('x', Strings::trim(" \t\n\r\x00\x0B\u{A0}x"));
Assert::same('a b', Strings::trim(' a b '));
Assert::same(' a b ', Strings::trim(' a b ', ''));
Assert::same('e', Strings::trim("\u{158}e-", "\u{158}-")); // 艠e-
Assert::same('foo', Strings::trim("鈥媐oo"));
Assert::same('foo', Strings::trim("鈥媐oo")); // Contains \u{200B} - `ZWSPfoo`

Assert::exception(
fn() => Strings::trim("\xC2x\xA0"),
Expand Down

0 comments on commit df32105

Please sign in to comment.