Skip to content

Commit

Permalink
update test case
Browse files Browse the repository at this point in the history
  • Loading branch information
parthshah51999 committed Mar 21, 2024
1 parent 993bfa1 commit 233b394
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/spec/modules/deepintentBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -371,14 +371,14 @@ describe('Deepintent adapter', function () {
let bidderReq = {
ortb2: {
regs: {
gpp: 'gpp-string-test',
gpp: 'gpp-test-string',
gpp_sid: [5]
}
}
};
let bRequest = spec.buildRequests(request, bidderReq);
let data = JSON.parse(bRequest.data);
expect(data.regs.gpp).to.equal('gpp-string-test');
expect(data.regs.gpp).to.equal('gpp-test-string');
expect(data.regs.gpp_sid[0]).to.equal(5);
});
it('should include coppa flag in bid request if coppa is set to true', () => {
Expand Down

0 comments on commit 233b394

Please sign in to comment.