From df3210524e502772c975825593e193940bc4fbf3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Net=C3=ADk?= Date: Mon, 30 Oct 2023 12:41:13 +0100 Subject: [PATCH] Add test comment --- tests/Utils/Strings.trim().phpt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Utils/Strings.trim().phpt b/tests/Utils/Strings.trim().phpt index d57053710..e7ff102b6 100644 --- a/tests/Utils/Strings.trim().phpt +++ b/tests/Utils/Strings.trim().phpt @@ -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("​foo")); +Assert::same('foo', Strings::trim("​foo")); // Contains \u{200B} - `ZWSPfoo` Assert::exception( fn() => Strings::trim("\xC2x\xA0"),