Skip to content

Commit

Permalink
fix linter errors (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
pbrudnick authored Jun 22, 2020
1 parent b8b323e commit f7c5b43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/spec/modules/nextrollBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ describe('nextrollBidAdapter', function() {
});

it('sets the CCPA consent string', function () {
const us_privacy = "1YYY";
const request = spec.buildRequests([validBid], {"uspConsent": us_privacy})[0];
const us_privacy = '1YYY';
const request = spec.buildRequests([validBid], {'uspConsent': us_privacy})[0];

expect(request.data.regs.ext.us_privacy).to.be.equal(us_privacy);
});
Expand Down

0 comments on commit f7c5b43

Please sign in to comment.