From e3f08ef3229ceeae9ba28a933fdb5cc5e2e6c163 Mon Sep 17 00:00:00 2001 From: Kijin Sung Date: Mon, 2 Jun 2025 22:44:57 +0900 Subject: [PATCH] Fix broken unit test --- tests/unit/functions/FunctionsTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/functions/FunctionsTest.php b/tests/unit/functions/FunctionsTest.php index 000fe451f..410221fa7 100644 --- a/tests/unit/functions/FunctionsTest.php +++ b/tests/unit/functions/FunctionsTest.php @@ -75,7 +75,7 @@ class FunctionsTest extends \Codeception\Test\Unit $this->assertEquals(array('foo', 'bar,baz'), explode_with_escape(',', 'foo,bar\\,baz')); $this->assertEquals(array('foo', 'bar\\', 'baz'), explode_with_escape(',', 'foo,bar\\ , baz')); $this->assertEquals(array('foo', 'bar,baz', 'rhymix'), explode_with_escape(',', 'foo,bar\\,baz,rhymix')); - $this->assertEquals(array('foo', 'bar,baz'), explode_with_escape(',', 'foo,bar!,baz', null, '!')); + $this->assertEquals(array('foo', 'bar,baz'), explode_with_escape(',', 'foo,bar!,baz', 0, '!')); } public function testStartsEndsContains()