Skip to content

Commit

Permalink
New alias for adkernel adapter (#4512)
Browse files Browse the repository at this point in the history
  • Loading branch information
ckbo3hrk authored and jsnellbaker committed Dec 2, 2019
1 parent 2d94094 commit d3b75d2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion modules/adkernelBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const VERSION = '1.3';
export const spec = {

code: 'adkernel',
aliases: ['headbidding', 'adsolut', 'oftmediahb', 'audiencemedia', 'waardex_ak'],
aliases: ['headbidding', 'adsolut', 'oftmediahb', 'audiencemedia', 'waardex_ak', 'roqoon'],
supportedMediaTypes: [BANNER, VIDEO],
isBidRequestValid: function(bidRequest) {
return 'params' in bidRequest &&
Expand Down
4 changes: 2 additions & 2 deletions test/spec/modules/adkernelBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -377,8 +377,8 @@ describe('Adkernel adapter', function () {

describe('adapter configuration', () => {
it('should have aliases', () => {
expect(spec.aliases).to.have.lengthOf(5);
expect(spec.aliases).to.be.eql(['headbidding', 'adsolut', 'oftmediahb', 'audiencemedia', 'waardex_ak']);
expect(spec.aliases).to.have.lengthOf(6);
expect(spec.aliases).to.include.members(['headbidding', 'adsolut', 'oftmediahb', 'audiencemedia', 'waardex_ak', 'roqoon']);
});
});
});

0 comments on commit d3b75d2

Please sign in to comment.