Skip to content

Commit

Permalink
Remove for of (#1932)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaiminpanchal27 authored and matthewlane committed Dec 6, 2017
1 parent 8512d83 commit 6194990
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/spec/modules/serverbidBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ describe('Serverbid BidAdapter', () => {

it('registers bids', () => {
let bids = spec.interpretResponse(RESPONSE, REQUEST);
for (var b of bids) {
bids.forEach(b => {
expect(b).to.have.property('cpm');
expect(b.cpm).to.be.above(0);
expect(b).to.have.property('requestId');
Expand All @@ -220,7 +220,7 @@ describe('Serverbid BidAdapter', () => {
expect(b).to.have.property('ttl', 360);
expect(b).to.have.property('netRevenue', true);
expect(b).to.have.property('referrer');
}
});
});

it('handles nobid responses', () => {
Expand Down

0 comments on commit 6194990

Please sign in to comment.