Skip to content

Commit

Permalink
Adnuntius Bid Adapter: update on no cookies parameter (#7875)
Browse files Browse the repository at this point in the history
* Added option to pass a user id through ortb2.

* RTD provider added.

* check if use cookie is present in config, and use it accordingly.

* Adding test for no cookie url addition.

* Adnuntius RTD Provider tests added

* Adnuntius RTD Module

* Removed adnuntius RTD provider from this pull request.

* Fix error
  • Loading branch information
mikael-lundin authored Feb 1, 2022
1 parent 98560b3 commit 83cb5ed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/spec/modules/gumgumBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,8 @@ describe('gumgumAdapter', function () {
slotRequest.params.slot = invalidSlotId;
legacySlotRequest.params.inSlot = invalidSlotId;

req = spec.buildRequests([ slotRequest ])[0];
legReq = spec.buildRequests([ legacySlotRequest ])[0];
req = spec.buildRequests([slotRequest])[0];
legReq = spec.buildRequests([legacySlotRequest])[0];

expect(req.data.si).to.equal(invalidSlotId);
expect(legReq.data.si).to.equal(invalidSlotId);
Expand Down Expand Up @@ -742,7 +742,7 @@ describe('gumgumAdapter', function () {
it('uses request size that nearest matches response size for in-screen', function () {
const request = { ...bidRequest };
const body = { ...serverResponse };
const expectedSize = [ 300, 50 ];
const expectedSize = [300, 50];
let result;

request.pi = 2;
Expand Down

0 comments on commit 83cb5ed

Please sign in to comment.