Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nexx360 Bid Adapter : internal bidder version update #10381

Merged
merged 1 commit into from
Aug 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/nexx360BidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const OUTSTREAM_RENDERER_URL = 'https://acdn.adnxs.com/video/outstream/ANOutstre
const BIDDER_CODE = 'nexx360';
const REQUEST_URL = 'https://fast.nexx360.io/booster';
const PAGE_VIEW_ID = generateUUID();
const BIDDER_VERSION = '2.0';
const BIDDER_VERSION = '3.0';
const GVLID = 965;
const NEXXID_KEY = 'nexx360_storage';

Expand Down
2 changes: 1 addition & 1 deletion test/spec/modules/nexx360BidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ describe('Nexx360 bid adapter tests', function () {
expect(requestContent.imp[1].tagid).to.be.eql('div-2-abcd');
expect(requestContent.imp[1].ext.adUnitCode).to.be.eql('div-2-abcd');
expect(requestContent.imp[1].ext.divId).to.be.eql('div-2-abcd');
expect(requestContent.ext.bidderVersion).to.be.eql('2.0');
expect(requestContent.ext.bidderVersion).to.be.eql('3.0');
expect(requestContent.ext.source).to.be.eql('prebid.js');
});

Expand Down