Skip to content

Commit

Permalink
EX-2549 Blackbird compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
egsgordeev committed Dec 8, 2020
1 parent 21c5ac7 commit 20a3c53
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion modules/sovrnBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export const spec = {

if (segmentsString) {
imp.ext = {
dealids: segmentsString.split(',')
deals: segmentsString.split(',')
}
}
});
Expand Down
4 changes: 2 additions & 2 deletions test/spec/modules/sovrnBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -299,8 +299,8 @@ describe('sovrnBidAdapter', function() {
}];
const request = spec.buildRequests(segmentsRequests, bidderRequest)
const payload = JSON.parse(request.data)
expect(payload.imp[0].ext.dealids[0]).to.equal('test1')
expect(payload.imp[0].ext.dealids[1]).to.equal('test2')
expect(payload.imp[0].ext.deals[0]).to.equal('test1')
expect(payload.imp[0].ext.deals[1]).to.equal('test2')
})
});

Expand Down

0 comments on commit 20a3c53

Please sign in to comment.