Skip to content

Commit

Permalink
changed vdo.ai bidder code to vdoai (#6135)
Browse files Browse the repository at this point in the history
  • Loading branch information
cpuBird authored Jan 7, 2021
1 parent d47b961 commit caaad49
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion modules/vdoaiBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {config} from '../src/config.js';
import {registerBidder} from '../src/adapters/bidderFactory.js';
import {BANNER, VIDEO} from '../src/mediaTypes.js';

const BIDDER_CODE = 'vdo.ai';
const BIDDER_CODE = 'vdoai';
const ENDPOINT_URL = 'https://prebid.vdo.ai/auction';

export const spec = {
Expand Down
8 changes: 4 additions & 4 deletions modules/vdoaiBidAdapter.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ Module that connects to VDO.AI's demand sources
},
bids: [
{
bidder: "vdo.ai",
bidder: "vdoai",
params: {
placement: 'newsdv77',
placementId: 'newsdv77',
bidFloor: 0.01 // Optional
}
}
Expand All @@ -47,9 +47,9 @@ var videoAdUnit = {
},
bids: [
{
bidder: "vdo.ai",
bidder: "vdoai",
params: {
placement: 'newsdv77'
placementId: 'newsdv77'
}
}
]
Expand Down
4 changes: 2 additions & 2 deletions test/spec/modules/vdoaiBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ describe('vdoaiBidAdapter', function () {
const adapter = newBidder(spec);
describe('isBidRequestValid', function () {
let bid = {
'bidder': 'vdo.ai',
'bidder': 'vdoai',
'params': {
placementId: 'testPlacementId'
},
Expand All @@ -27,7 +27,7 @@ describe('vdoaiBidAdapter', function () {
describe('buildRequests', function () {
let bidRequests = [
{
'bidder': 'vdo.ai',
'bidder': 'vdoai',
'params': {
placementId: 'testPlacementId'
},
Expand Down

0 comments on commit caaad49

Please sign in to comment.