Skip to content

Commit

Permalink
Boldwin Bid Adapter : update sync url (#10757)
Browse files Browse the repository at this point in the history
* new boldwin bid adapter

* fix

* Restarting ci / circleci

* changes

* fixed conflicts

* added endpointId param

* kick off CircleCI tests

* gpp

* update sync url

---------

Co-authored-by: Aiholkin <[email protected]>
Co-authored-by: Vladislav Isaiko <[email protected]>
Co-authored-by: Mykhailo Yaremchuk <[email protected]>
Co-authored-by: Chris Huie <[email protected]>
  • Loading branch information
5 people authored Nov 27, 2023
1 parent f215abd commit 5945465
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/boldwinBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { convertOrtbRequestToProprietaryNative } from '../src/native.js';

const BIDDER_CODE = 'boldwin';
const AD_URL = 'https://ssp.videowalldirect.com/pbjs';
const SYNC_URL = 'https://cs.videowalldirect.com'
const SYNC_URL = 'https://sync.videowalldirect.com';

function isBidResponseValid(bid) {
if (!bid.requestId || !bid.cpm || !bid.creativeId ||
Expand Down
2 changes: 1 addition & 1 deletion test/spec/modules/boldwinBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ describe('BoldwinBidAdapter', function () {
expect(userSync[0].type).to.exist;
expect(userSync[0].url).to.exist;
expect(userSync[0].type).to.be.equal('image');
expect(userSync[0].url).to.be.equal('https://cs.videowalldirect.com');
expect(userSync[0].url).to.be.equal('https://sync.videowalldirect.com');
});
});
});

0 comments on commit 5945465

Please sign in to comment.