summaryrefslogtreecommitdiff
path: root/src/json_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/json_test.c')
-rw-r--r--src/json_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/json_test.c b/src/json_test.c
index 1a1fdcbad..74463f3d2 100644
--- a/src/json_test.c
+++ b/src/json_test.c
@@ -181,7 +181,7 @@ test_fill_called_on_string(void)
reader.js_buf = (char_u *)" \"foo";
reader.js_end = reader.js_buf + STRLEN(reader.js_buf);
reader.js_cookie = " \"foobar\" ";
- assert(json_decode_string(&reader, NULL) == OK);
+ assert(json_decode_string(&reader, NULL, '"') == OK);
}
#endif