Skip to content

Commit

Permalink
Fix sovrn dealid (#2119)
Browse files Browse the repository at this point in the history
  • Loading branch information
rachelrj authored and matthewlane committed Feb 8, 2018
1 parent 8bd9595 commit 7e1abbe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/sovrnBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export const spec = {
width: parseInt(sovrnBid.w),
height: parseInt(sovrnBid.h),
creativeId: sovrnBid.id,
dealId: sovrnBid.dealId || null,
dealId: sovrnBid.dealid || null,
currency: 'USD',
netRevenue: true,
mediaType: BANNER,
Expand Down
2 changes: 1 addition & 1 deletion test/spec/modules/sovrnBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ describe('sovrnBidAdapter', function() {
});

it('should get correct bid response when dealId is passed', () => {
response.body.dealId = 'baking';
response.body.dealid = 'baking';

let expectedResponse = [{
'requestId': '263c448586f5a1',
Expand Down

0 comments on commit 7e1abbe

Please sign in to comment.