Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
someden committed Dec 30, 2023
1 parent 06e144f commit c2c88a9
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions test/spec/modules/yandexBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,21 +143,22 @@ describe('Yandex adapter', function () {

it('should send ortb2 user data if defined', function() {
const ortb2 = {
user: {
data: [
{
ext: { segtax: 600, segclass: '1' },
name: 'example.com',
segment: [{id: '243'}]
},
{
ext: { segtax: 600, segclass: '1' },
name: 'ads.pubmatic.com',
segment: [{id: '243'}]
},
]
user: {
data: [
{
ext: { segtax: 600, segclass: '1' },
name: 'example.com',
segment: [{ id: '243' }],
},
{
ext: { segtax: 600, segclass: '1' },
name: 'ads.example.org',
segment: [{ id: '243' }],
},
],
},
};

const bannerRequest = getBidRequest({ ortb2 });

const requests = spec.buildRequests([bannerRequest], bidderRequest);
Expand Down

0 comments on commit c2c88a9

Please sign in to comment.