From a9f5df499187b352fa28d48e1895628c527ddf4a Mon Sep 17 00:00:00 2001 From: Matronator <5470780+matronator@users.noreply.github.com> Date: Fri, 12 May 2023 05:08:47 +0200 Subject: [PATCH] fix test --- tests/Parsem/ParserTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Parsem/ParserTest.php b/tests/Parsem/ParserTest.php index 6004ce4..8f080b1 100644 --- a/tests/Parsem/ParserTest.php +++ b/tests/Parsem/ParserTest.php @@ -96,7 +96,7 @@ public function testDefaultValueWithFilter() Assert::equal('Hello wo!', $parsed, 'Filter applied correctly to default value.'); $parsed = Parser::parseString($string3, $args); - Assert::equal('Hello ...!', $parsed, 'Filter applied correctly to empty default value.'); + Assert::equal('Hello !', $parsed, 'Filter applied correctly to empty default value.'); } }