Skip to content

Commit c173ab2

Browse files
authored
fix lint errors in ozoneBidAdapter unit tests (prebid#3624)
1 parent 72e0e97 commit c173ab2

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

test/spec/modules/ozoneBidAdapter_spec.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ var validBidRequestsWithNonBannerMediaTypes = [
7373
bidderRequestId: '1c1586b27a1b5c8',
7474
crumbs: {pubcid: '203a0692-f728-4856-87f6-9a25a6b63715'},
7575
params: { publisherId: '9876abcd12-3', customData: {'gender': 'bart', 'age': 'low'}, ozoneData: {'networkID': '3048', 'dfpSiteID': 'd.thesun', 'sectionID': 'homepage', 'path': '/', 'sec_id': 'null', 'sec': 'sec', 'topics': 'null', 'kw': 'null', 'aid': 'null', 'search': 'null', 'article_type': 'null', 'hide_ads': '', 'article_slug': 'null'}, lotameData: {'Profile': {'tpid': 'c8ef27a0d4ba771a81159f0d2e792db4', 'Audiences': {'Audience': [{'id': '99999', 'abbr': 'sports'}, {'id': '88888', 'abbr': 'movie'}, {'id': '77777', 'abbr': 'blogger'}], 'ThirdPartyAudience': [{'id': '123', 'name': 'Automobiles'}, {'id': '456', 'name': 'Ages: 30-39'}]}}}, placementId: '1310000099', siteId: '1234567890', id: 'fea37168-78f1-4a23-a40e-88437a99377e', auctionId: '27dcb421-95c6-4024-a624-3c03816c5f99', imp: [ { id: '2899ec066a91ff8', tagid: 'undefined', secure: 1, banner: { format: [{ w: 300, h: 250 }, { w: 300, h: 600 }], h: 250, topframe: 1, w: 300 } } ] },
76-
mediaTypes: {video:{info:'dummy data'}, native:{info:'dummy data'}},
76+
mediaTypes: {video: {info: 'dummy data'}, native: {info: 'dummy data'}},
7777
transactionId: '2e63c0ed-b10c-4008-aed5-84582cecfe87'
7878
}
7979
];
@@ -580,7 +580,7 @@ describe('ozone Adapter', function () {
580580
expect(result).to.be.empty;
581581
});
582582
it('should fail ok if seatbid is not an array', function () {
583-
const result = spec.interpretResponse({'body':{'seatbid':'nothing_here'}}, {});
583+
const result = spec.interpretResponse({'body': {'seatbid': 'nothing_here'}}, {});
584584
expect(result).to.be.an('array');
585585
expect(result).to.be.empty;
586586
});
@@ -596,5 +596,4 @@ describe('ozone Adapter', function () {
596596
expect(result).to.be.empty;
597597
});
598598
});
599-
600599
});

0 commit comments

Comments
 (0)