diff --git a/modules/outconBidAdapter.js b/modules/outconBidAdapter.js index ba0c1164279..b636c18cf88 100644 --- a/modules/outconBidAdapter.js +++ b/modules/outconBidAdapter.js @@ -18,13 +18,13 @@ export const spec = { switch (validBidRequests[i].params.env) { case 'test': par = par + '&demo=true'; - url = 'http://test.outcondigital.com:8048/ad/' + par; + url = 'https://test.outcondigital.com/ad/' + par; break; case 'api': - url = 'http://api.outcondigital.com:8048/ad/' + par; + url = 'https://api.outcondigital.com/ad/' + par; break; case 'stg': - url = 'http://stg.outcondigital.com:8048/ad/' + par; + url = 'https://stg.outcondigital.com/ad/' + par; break; } return { diff --git a/test/spec/modules/outconBidAdapter_spec.js b/test/spec/modules/outconBidAdapter_spec.js index a263bc9dbf9..d9e763b9df9 100644 --- a/test/spec/modules/outconBidAdapter_spec.js +++ b/test/spec/modules/outconBidAdapter_spec.js @@ -23,7 +23,6 @@ describe('outconBidAdapter', function () { })).to.equal(true); }); }); - describe('buildRequests', function () { it('Build requests with pod param', function () { expect(spec.buildRequests([{ @@ -34,7 +33,6 @@ describe('outconBidAdapter', function () { } }])).to.have.keys('method', 'url', 'data'); }); - it('Build requests with internalID and publisherID params', function () { expect(spec.buildRequests([{ bidder: 'outcon', @@ -46,11 +44,10 @@ describe('outconBidAdapter', function () { }])).to.have.keys('method', 'url', 'data'); }); }); - describe('interpretResponse', function () { const bidRequest = { method: 'GET', - url: 'http://test.outcondigital.com:8048/ad/', + url: 'https://test.outcondigital.com/ad/', data: { pod: '5d603538eba7192ae14e39a4', env: 'test', @@ -64,7 +61,7 @@ describe('outconBidAdapter', function () { exp: 10, creatives: [ { - url: 'http://test.outcondigital.com/uploads/5d42e7a7306ea4689b67c122/frutas.mp4', + url: 'https://test.outcondigital.com/uploads/5d42e7a7306ea4689b67c122/frutas.mp4', size: 3, width: 1920, height: 1080, @@ -74,8 +71,8 @@ describe('outconBidAdapter', function () { ad: '5d6e6aef22063e392bf7f564', type: 'video', campaign: '5d42e44b306ea469593c76a2', - trackingURL: 'http://test.outcondigital.com:8048/ad/track?track=5d6e6aef22063e392bf7f564', - vastURL: 'http://test.outcondigital.com:8048/outcon.xml?impression=5d6e6aef22063e392bf7f564&demo=true' + trackingURL: 'https://test.outcondigital.com/ad/track?track=5d6e6aef22063e392bf7f564', + vastURL: 'https://test.outcondigital.com/outcon.xml?impression=5d6e6aef22063e392bf7f564&demo=true' }, }; it('check all the keys that are needed to interpret the response', function () {