Skip to content

Commit

Permalink
fix(usersync): corrected usersync url (#4712)
Browse files Browse the repository at this point in the history
* fix(usersync): corrected usersync url

* fix(test): fixed test case for user sync

* fix(usersync): corrected usersync url
  • Loading branch information
sourabhg authored and jsnellbaker committed Jan 21, 2020
1 parent 1b591f2 commit d67768b
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 d67768b

Please sign in to comment.