Skip to content

Commit

Permalink
Fix skipped test (prebid#2059)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewlane authored and dluxemburg committed Jul 17, 2018
1 parent 0849da4 commit d8c2119
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/spec/modules/eplanningBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,9 +182,9 @@ describe('E-Planning Adapter', () => {
expect(spec.isBidRequestValid(invalidBid)).to.equal(false);
});

it('should return true when bid does not have ci parameter but is a test bid'), () => {
expect(spec.isBidRequestValid(testBid).to.equal(true));
}
it('should return true when bid does not have ci parameter but is a test bid', () => {
expect(spec.isBidRequestValid(testBid)).to.equal(true);
});
});

describe('buildRequests', () => {
Expand Down

0 comments on commit d8c2119

Please sign in to comment.