Skip to content

Commit

Permalink
Bright Mountain Media Bid Adapter: Change Endpoint URL (prebid#6576)
Browse files Browse the repository at this point in the history
  • Loading branch information
BrightMountainMediaInc authored and marc_tappx committed Apr 13, 2021
1 parent df6cf9a commit 28cd35a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/brightMountainMediaBidAdapter.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 * as utils from '../src/utils.js';

const BIDDER_CODE = 'bmtm';
const AD_URL = 'https://console.brightmountainmedia.com/hb/bid';
const AD_URL = 'https://one.elitebidder.com/api/hb';

export const spec = {
code: BIDDER_CODE,
Expand Down
2 changes: 1 addition & 1 deletion test/spec/modules/brightMountainMediaBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ describe('brightMountainMediaBidAdapter_spec', function () {
expect(serverRequest.method).to.equal('POST');
});
it('Returns valid URL', function () {
expect(serverRequest.url).to.equal('https://console.brightmountainmedia.com/hb/bid');
expect(serverRequest.url).to.equal('https://one.elitebidder.com/api/hb');
});

it('Returns valid data if array of bids is valid', function () {
Expand Down

0 comments on commit 28cd35a

Please sign in to comment.