Skip to content

Commit

Permalink
Update smartadserverBidAdapter_spec.js
Browse files Browse the repository at this point in the history
  • Loading branch information
patmmccann authored Jun 7, 2021
1 parent ca4b4e8 commit a5a4abc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/spec/modules/smartadserverBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ describe('Smart bid adapter tests', function () {
expect(requestContent).to.have.property('pageid').and.to.equal('5678');
expect(requestContent).to.have.property('formatid').and.to.equal('90');
expect(requestContent).to.have.property('currencyCode').and.to.equal('EUR');
expect(requestContent).to.have.property('bidfloor').and.to.equal(0.0);
expect(requestContent).to.have.property('bidfloor').and.to.equal(0.42);
expect(requestContent).to.have.property('targeting').and.to.equal('test=prebid');
expect(requestContent).to.have.property('tagId').and.to.equal('sas_42');
expect(requestContent).to.have.property('sizes');
Expand Down Expand Up @@ -468,7 +468,7 @@ describe('Smart bid adapter tests', function () {
expect(requestContent).to.have.property('pageid').and.to.equal('5678');
expect(requestContent).to.have.property('formatid').and.to.equal('90');
expect(requestContent).to.have.property('currencyCode').and.to.equal('EUR');
expect(requestContent).to.have.property('bidfloor').and.to.equal(0.0);
expect(requestContent).to.have.property('bidfloor').and.to.equal(0.42);
expect(requestContent).to.have.property('targeting').and.to.equal('test=prebid');
expect(requestContent).to.have.property('tagId').and.to.equal('sas_42');
expect(requestContent).to.not.have.property('pageDomain');
Expand Down Expand Up @@ -603,7 +603,7 @@ describe('Smart bid adapter tests', function () {
expect(requestContent).to.have.property('pageid').and.to.equal('5678');
expect(requestContent).to.have.property('formatid').and.to.equal('91');
expect(requestContent).to.have.property('currencyCode').and.to.equal('EUR');
expect(requestContent).to.have.property('bidfloor').and.to.equal(0.0);
expect(requestContent).to.have.property('bidfloor').and.to.equal(0.43);
expect(requestContent).to.have.property('targeting').and.to.equal('test=prebid-outstream');
expect(requestContent).to.have.property('tagId').and.to.equal('sas_43');
expect(requestContent).to.not.have.property('pageDomain');
Expand Down

0 comments on commit a5a4abc

Please sign in to comment.