Skip to content

Commit

Permalink
Tests: remove console.log (#8481)
Browse files Browse the repository at this point in the history
Co-authored-by: Surovenko Alexey <surovenko.alexey@gmail.com>
  • Loading branch information
asurovenko-zeta and surovenko authored May 26, 2022
1 parent f39d849 commit 7576a67
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
3 changes: 0 additions & 3 deletions modules/relaidoBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,6 @@ function interpretResponse(serverResponse, bidRequest) {
}
bidResponses.push(bidResponse);
}

// eslint-disable-next-line no-console
console.log(JSON.stringify(bidResponses));
return bidResponses;
}

Expand Down
2 changes: 0 additions & 2 deletions test/spec/modules/proxistoreBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,6 @@ describe('ProxistoreBidAdapter', function () {
bid.params['bidFloor'] = 1;
let req = spec.buildRequests([bid], bidderRequest);
data = JSON.parse(req.data);
// eslint-disable-next-line no-console
console.log(data.bids[0]);
expect(data.bids[0].floor).equal(1);
bid.getFloor = function () {
return { currency: 'USD', floor: 1.0 };
Expand Down

0 comments on commit 7576a67

Please sign in to comment.