From 464e9ec07e1e6e1410d2dcb168c64a722593449e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ferm=C3=ADn=20Gal=C3=A1n=20M=C3=A1rquez?= Date: Fri, 7 Jul 2023 12:08:46 +0200 Subject: [PATCH] FIX op in querystring_test.js --- test/unit/querystring_test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unit/querystring_test.js b/test/unit/querystring_test.js index dc2712f..76f33ed 100644 --- a/test/unit/querystring_test.js +++ b/test/unit/querystring_test.js @@ -94,7 +94,7 @@ describe('Proxy querystring behavior', function() { describe('When a request to the CB arrives to the proxy with a querystring', function() { var options = { - uri: 'http://localhost:' + config.resource.proxy.port + '/v1/contextEntities', + uri: 'http://localhost:' + config.resource.proxy.port + '/v2/entities', method: 'GET', headers: { 'Accept': 'application/json', @@ -112,7 +112,7 @@ describe('Proxy querystring behavior', function() { beforeEach(function(done) { async.series([ async.apply(serverMocks.mockPath, '/pdp/v3', mockAccessApp), - async.apply(serverMocks.mockPath, '/v1/contextentities', mockTargetApp) + async.apply(serverMocks.mockPath, '/v2/entities', mockTargetApp) ], done); });