Skip to content

Commit

Permalink
small edits to fix undertone tests (prebid#4616)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsnellbaker authored and sa1omon committed Dec 19, 2019
1 parent 4f0cee2 commit 3e9daae
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/spec/modules/undertoneBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ describe('Undertone Adapter', function () {
arguments: [{ iframeEnabled: true, pixelEnabled: true }, {}, null, 'YN12'],
expect: {
type: 'iframe',
pixels: ['//cdn.undertone.com/js/usersync.html?ccpa=YN12']
pixels: ['https://cdn.undertone.com/js/usersync.html?ccpa=YN12']
}
},
{
Expand All @@ -289,7 +289,7 @@ describe('Undertone Adapter', function () {
arguments: [{ iframeEnabled: true, pixelEnabled: true }, {}, {gdprApplies: true, consentString: '234234'}, 'YN12'],
expect: {
type: 'iframe',
pixels: ['//cdn.undertone.com/js/usersync.html?gdpr=1&gdprstr=234234&ccpa=YN12']
pixels: ['https://cdn.undertone.com/js/usersync.html?gdpr=1&gdprstr=234234&ccpa=YN12']
}
},
{
Expand All @@ -315,8 +315,8 @@ describe('Undertone Adapter', function () {
arguments: [{ pixelEnabled: true }, {}, null, 'YN12'],
expect: {
type: 'image',
pixels: ['//usr.undertone.com/userPixel/syncOne?id=1&of=2&ccpa=YN12',
'//usr.undertone.com/userPixel/syncOne?id=2&of=2&ccpa=YN12']
pixels: ['https://usr.undertone.com/userPixel/syncOne?id=1&of=2&ccpa=YN12',
'https://usr.undertone.com/userPixel/syncOne?id=2&of=2&ccpa=YN12']
}
},
{
Expand All @@ -333,8 +333,8 @@ describe('Undertone Adapter', function () {
arguments: [{ pixelEnabled: true }, {}, {gdprApplies: true, consentString: '234234'}, 'YN12'],
expect: {
type: 'image',
pixels: ['//usr.undertone.com/userPixel/syncOne?id=1&of=2&gdpr=1&gdprstr=234234&ccpa=YN12',
'//usr.undertone.com/userPixel/syncOne?id=2&of=2&gdpr=1&gdprstr=234234&ccpa=YN12']
pixels: ['https://usr.undertone.com/userPixel/syncOne?id=1&of=2&gdpr=1&gdprstr=234234&ccpa=YN12',
'https://usr.undertone.com/userPixel/syncOne?id=2&of=2&gdpr=1&gdprstr=234234&ccpa=YN12']
}
}
];
Expand Down

0 comments on commit 3e9daae

Please sign in to comment.