Skip to content

Commit

Permalink
Fix/legacy syncurl (prebid#4778)
Browse files Browse the repository at this point in the history
* fix(usersync): fixed user sync url

* fix(usersync): fixed user sync url
  • Loading branch information
sourabhg authored and GLStephen committed Jan 29, 2020
1 parent 3c5057a commit 86e1378
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/deepintentBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion test/spec/modules/deepintentBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 () {
Expand Down

0 comments on commit 86e1378

Please sign in to comment.