diff --git a/tests/src/flextype/core/Serializers/PhpArrayTest.php b/tests/src/flextype/core/Serializers/PhpArrayTest.php index 1e4162b6..8242cff8 100644 --- a/tests/src/flextype/core/Serializers/PhpArrayTest.php +++ b/tests/src/flextype/core/Serializers/PhpArrayTest.php @@ -3,7 +3,7 @@ declare(strict_types=1); test('encode', function () { - $this->assertEquals(67, strings(serializers()->phparray()->encode(['title' => 'Foo', 'content' => 'Bar']))->length()); + $this->assertEquals(65, strings(serializers()->phparray()->encode(['title' => 'Foo', 'content' => 'Bar']))->length()); }); test('decode', function () { diff --git a/tests/src/flextype/core/Serializers/PhpCodeTest.php b/tests/src/flextype/core/Serializers/PhpCodeTest.php index fe4b09b5..3ba5cbdb 100644 --- a/tests/src/flextype/core/Serializers/PhpCodeTest.php +++ b/tests/src/flextype/core/Serializers/PhpCodeTest.php @@ -3,7 +3,7 @@ declare(strict_types=1); test('encode', function () { - $this->assertEquals(35, strings(serializers()->phpcode()->encode(['flextype' => registry()->get("flextype.manifest.version")]))->length()); + $this->assertEquals(31, strings(serializers()->phpcode()->encode(['flextype' => registry()->get("flextype.manifest.version")]))->length()); }); test('decode', function () {