Skip to content

Commit

Permalink
Ads Interactive: fix main domain (prebid#12319)
Browse files Browse the repository at this point in the history
* add new adapter ads_interactive

* fix domain
  • Loading branch information
AdsInteractive authored Oct 11, 2024
1 parent 953a7ac commit d013fbb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/ads_interactiveBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { BANNER, NATIVE, VIDEO } from '../src/mediaTypes.js';
import { isBidRequestValid, buildRequests, interpretResponse, getUserSyncs } from '../libraries/teqblazeUtils/bidderUtils.js';

const BIDDER_CODE = 'ads_interactive';
const AD_URL = 'https://bntb.adsintreactive.com/pbjs';
const AD_URL = 'https://bntb.adsinteractive.com/pbjs';
const SYNC_URL = 'https://cstb.adsinteractive.com';

export const spec = {
Expand Down
2 changes: 1 addition & 1 deletion test/spec/modules/ads_interactiveBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ describe('AdsInteractiveBidAdapter', function () {
});

it('Returns valid URL', function () {
expect(serverRequest.url).to.equal('https://bntb.adsintreactive.com/pbjs');
expect(serverRequest.url).to.equal('https://bntb.adsinteractive.com/pbjs');
});

it('Returns general data valid', function () {
Expand Down

0 comments on commit d013fbb

Please sign in to comment.