From afa2786657a9aa0ee9102726b6b92851852da0df Mon Sep 17 00:00:00 2001 From: Alexey Bondarenko Date: Thu, 14 Jun 2018 23:58:19 +0300 Subject: [PATCH] Update unit test --- app/common/helpers/url.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/common/helpers/url.js b/app/common/helpers/url.js index 2dcd363..a697397 100644 --- a/app/common/helpers/url.js +++ b/app/common/helpers/url.js @@ -6,7 +6,7 @@ export const createUrl = (endpoint, options) => { url.search = qs.stringify({ ...qs.parse(url.search), - ...options, + options, }); return Url.format(url); };