Skip to content

Commit

Permalink
Aduptech bid adapter: fix failing test (prebid#8548)
Browse files Browse the repository at this point in the history
  • Loading branch information
dgirardi authored and renebaudisch committed Jun 28, 2022
1 parent 35d09f4 commit 5dd6677
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/spec/modules/aduptechBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -532,8 +532,8 @@ describe('AduptechBidAdapter', () => {
const bidderRequest = {
auctionId: 'auctionId123',
refererInfo: {
canonicalUrl: 'http://crazy.canonical.url',
referer: 'http://crazy.referer.url'
page: 'http://crazy.canonical.url',
ref: 'http://crazy.referer.url'
},
gdprConsent: {
consentString: 'consentString123',
Expand Down Expand Up @@ -572,8 +572,8 @@ describe('AduptechBidAdapter', () => {
method: ENDPOINT_METHOD,
data: {
auctionId: bidderRequest.auctionId,
pageUrl: bidderRequest.refererInfo.canonicalUrl,
referrer: bidderRequest.refererInfo.referer,
pageUrl: bidderRequest.refererInfo.page,
referrer: bidderRequest.refererInfo.ref,
gdpr: {
consentString: bidderRequest.gdprConsent.consentString,
consentRequired: bidderRequest.gdprConsent.gdprApplies
Expand Down

0 comments on commit 5dd6677

Please sign in to comment.