From ae3349ba5e4e5077e4de3aab06fd7d7ebcb965e7 Mon Sep 17 00:00:00 2001 From: CryptoPascal31 Date: Wed, 31 Jan 2024 18:27:55 +0100 Subject: [PATCH] Update string tests --- pact/tests_repl/util-strings-test.repl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pact/tests_repl/util-strings-test.repl b/pact/tests_repl/util-strings-test.repl index 9b6c68b..771d80e 100644 --- a/pact/tests_repl/util-strings-test.repl +++ b/pact/tests_repl/util-strings-test.repl @@ -15,7 +15,7 @@ (expect "Integer -> Str" "38" (to-string 38)) (expect "Decimal -> Str" "22.34" (to-string 22.34)) (expect "List of integer -> Str" "[1, 2, 3, 4]" (to-string [1,2,3,4])) -(expect "Object -> Str" "{\"a\": 3,\"b\": \"Abcd\",\"c\": 42.001}" (to-string {'a:3, 'b:"Abcd", 'c:42.001})) +(expect "Object -> Str" "{\"a\":3, \"b\":\"Abcd\", \"c\":42.001}" (to-string {'a:3, 'b:"Abcd", 'c:42.001})) ; decode-ascii