From 86e1378ac6d2c2916b0056a52f4d31abe320adf6 Mon Sep 17 00:00:00 2001 From: sourabhg Date: Sun, 26 Jan 2020 12:36:32 +0530 Subject: [PATCH] Fix/legacy syncurl (#4778) * fix(usersync): fixed user sync url * fix(usersync): fixed user sync url --- modules/deepintentBidAdapter.js | 2 +- test/spec/modules/deepintentBidAdapter_spec.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/deepintentBidAdapter.js b/modules/deepintentBidAdapter.js index 39866086cfa..ace4bcb5ae2 100644 --- a/modules/deepintentBidAdapter.js +++ b/modules/deepintentBidAdapter.js @@ -3,7 +3,7 @@ import {BANNER} from '../src/mediaTypes'; import * as utils from '../src/utils'; const BIDDER_CODE = 'deepintent'; const BIDDER_ENDPOINT = 'https://prebid.deepintent.com/prebid'; -const USER_SYNC_URL = 'https://beacon.deepintent.com/usersync.html'; +const USER_SYNC_URL = 'https://cdn.deepintent.com/syncpixel.html'; const DI_M_V = '1.0.0'; export const spec = { code: BIDDER_CODE, diff --git a/test/spec/modules/deepintentBidAdapter_spec.js b/test/spec/modules/deepintentBidAdapter_spec.js index f4adad7faf2..33dfd14d074 100644 --- a/test/spec/modules/deepintentBidAdapter_spec.js +++ b/test/spec/modules/deepintentBidAdapter_spec.js @@ -153,7 +153,7 @@ describe('Deepintent adapter', function () { let userSync = spec.getUserSyncs(syncOptions); expect(userSync).to.be.an('array').with.length.above(0); expect(userSync[0].type).to.equal('iframe'); - expect(userSync[0].url).to.equal('https://beacon.deepintent.com/usersync.html'); + expect(userSync[0].url).to.equal('https://cdn.deepintent.com/syncpixel.html'); }); }); describe('response check', function () {