From ab431c24dc52e8d49bd36c18d61b2da0a50a5f01 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Mon, 10 Feb 2014 21:04:19 -0800 Subject: [PATCH] Update json spec --- spec/runtime/json_spec.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/runtime/json_spec.cpp b/spec/runtime/json_spec.cpp index b373dd06..02c1dd69 100644 --- a/spec/runtime/json_spec.cpp +++ b/spec/runtime/json_spec.cpp @@ -14,7 +14,7 @@ describe("json", []() { }); it("parses strings", [&]() { - TSDocumentSetText(document, "\"this is a \\\"string\\\" \""); + TSDocumentSetText(document, "\"this is a \\\"string\\\" within a string\""); AssertThat(string(TSDocumentToString(document)), Equals("(value (string))")); });