From 53de2c977227530e29c8a761b664f3453222e9fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment?= Date: Tue, 23 Feb 2021 21:23:37 +0000 Subject: [PATCH] get-json_test.js fix after node version upgrade --- js/tests/get-json_test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/tests/get-json_test.js b/js/tests/get-json_test.js index 3c8a457da..e5d0d6d2b 100644 --- a/js/tests/get-json_test.js +++ b/js/tests/get-json_test.js @@ -15,7 +15,7 @@ t(async ({ eq }) => { let url fetch = async (arg) => fakeFetch({ url: (url = arg) }) const pending = getJSON('/test', { query: 'hello world', b: 5 }) - return eq(url, '/test?query=hello%20world&b=5') + return eq(url, '/test?query=hello+world&b=5') }) t(async ({ eq }) => {