diff --git a/tests/src/flextype/core/Serializers/NeonTest.php b/tests/src/flextype/core/Serializers/NeonTest.php index 0135f204..27b6603d 100644 --- a/tests/src/flextype/core/Serializers/NeonTest.php +++ b/tests/src/flextype/core/Serializers/NeonTest.php @@ -4,7 +4,7 @@ declare(strict_types=1); test('encode', function () { $string = filesystem()->file(ROOT_DIR . '/tests/fixtures/serializers/neon.neon')->get(); - $this->assertEquals(trim($string), + $this->assertEquals(trim("{" . $string . "}"), trim(serializers()->neon()->encode(['hello' => 'world']))); });