aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-ui/test-utils/MockRest.js
diff options
context:
space:
mode:
Diffstat (limited to 'openecomp-ui/test-utils/MockRest.js')
-rw-r--r--openecomp-ui/test-utils/MockRest.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/openecomp-ui/test-utils/MockRest.js b/openecomp-ui/test-utils/MockRest.js
index 6cc676a2bb..0ec0d42e73 100644
--- a/openecomp-ui/test-utils/MockRest.js
+++ b/openecomp-ui/test-utils/MockRest.js
@@ -41,7 +41,7 @@ export default {
fetch(baseUrl, options) {
const {fetch} = queue;
if(!fetch.length) {
- throw new Error(`Fetch operation was called without proper handler. baseUrl: '${baseUrl}' options: '${options}'`);
+ throw new Error(`Fetch operation was called without proper handler. baseUrl: ${baseUrl} options: ${options}`);
}
return handleOperation(fetch.shift(), {options, baseUrl});
},