aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-ui/test-utils
diff options
context:
space:
mode:
authorKhantwal <anamika.khantwal@accenture.com>2025-02-21 11:54:19 +0530
committerKhantwal <anamika.khantwal@accenture.com>2025-02-21 18:25:47 +0530
commitc8d9b63d72ec6ce72d587eb0ac20ae4709a0222d (patch)
tree0e5e427de40254c5f9c42162a23f00b46fbfc4d5 /openecomp-ui/test-utils
parent2cf0e33271373bb45e66f43d06be24b68ba2cbbf (diff)
SDC component upliftment of janusgraph version1.14.1
- Janusgraph version update from 0.3.3 to 0.5.0 Issue-ID: SDC-4717 Change-Id: Ib7f7c7f0113a854e119ff7bd32ce5ec34da1692f Signed-off-by: Anamika Khantwal <anamika.khantwal@accenture.com>
Diffstat (limited to 'openecomp-ui/test-utils')
-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});
},