Skip to content

Commit

Permalink
Fixed the broken tests. (prebid#1602)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbemiller authored and jbAdyoulike committed Sep 21, 2017
1 parent 5c25167 commit a4691f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/spec/unit/core/bidderFactory_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ describe('bidders created by newBidder', () => {
it('should add bids for each placement code if no requests are given', () => {
const bidder = newBidder(spec);

spec.areParamsValid.returns(true);
spec.isBidRequestValid.returns(true);
spec.buildRequests.returns([]);
spec.interpretResponse.returns([]);
spec.getUserSyncs.returns([]);
Expand Down Expand Up @@ -321,7 +321,7 @@ describe('bidders created by newBidder', () => {
it('should register usersync pixels', () => {
const bidder = newBidder(spec);

spec.areParamsValid.returns(false);
spec.isBidRequestValid.returns(false);
spec.buildRequests.returns([]);
spec.getUserSyncs.returns([{
type: 'iframe',
Expand Down

0 comments on commit a4691f6

Please sign in to comment.