Skip to content

Commit

Permalink
FIX op in querystring_test.js
Browse files Browse the repository at this point in the history
  • Loading branch information
fgalan authored Jul 7, 2023
1 parent 4d6ce0a commit 464e9ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/unit/querystring_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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);
});

Expand Down

0 comments on commit 464e9ec

Please sign in to comment.