Skip to content

Commit

Permalink
Fix spacing for lint rules (#1366)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewlane authored and Matt Kendall committed Jul 11, 2017
1 parent 356b049 commit 3b8b29d
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions test/spec/modules/ucfunnelBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,23 +63,23 @@ describe('ucfunnel adapter tests', function () {
let bidderRequest = adapter.callBids.getCall(0).args[0];

expect(bidderRequest).to.have.property('bids')
.that.is.an('array')
.with.lengthOf(1);
.that.is.an('array')
.with.lengthOf(1);

expect(bidderRequest).to.have.deep.property('bids[0]')
.to.have.property('bidder', 'ucfunnel');
.to.have.property('bidder', 'ucfunnel');

expect(bidderRequest).to.have.deep.property('bids[0]')
.with.property('sizes')
.that.is.an('array')
.with.lengthOf(1)
.that.deep.equals(adUnit.sizes);
.with.property('sizes')
.that.is.an('array')
.with.lengthOf(1)
.that.deep.equals(adUnit.sizes);
expect(bidderRequest).to.have.deep.property('bids[0]')
.with.property('params')
.to.have.property('adid', 'test-ad-83444226E44368D1E32E49EEBE6D29');
.with.property('params')
.to.have.property('adid', 'test-ad-83444226E44368D1E32E49EEBE6D29');
expect(bidderRequest).to.have.deep.property('bids[0]')
.with.property('params')
.to.have.property('width', 300);
.with.property('params')
.to.have.property('width', 300);
});

it('Valid bid-response', () => {
Expand Down

0 comments on commit 3b8b29d

Please sign in to comment.