Skip to content

Commit

Permalink
Change ironsource to be lower case all over code (#5649)
Browse files Browse the repository at this point in the history
  • Loading branch information
liranbaruch authored Aug 26, 2020
1 parent e2c4e69 commit eb1aea4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion modules/ironsourceBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {VIDEO} from '../src/mediaTypes.js';
import {config} from '../src/config.js';

const SUPPORTED_AD_TYPES = [VIDEO];
const BIDDER_CODE = 'ironSource';
const BIDDER_CODE = 'ironsource';
const BIDDER_VERSION = '4.0.0';
const TTL = 360;
const SELLER_ENDPOINT = 'https://hb.yellowblue.io/hb';
Expand Down
2 changes: 1 addition & 1 deletion modules/ironsourceBidAdapter.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ var adUnits = [
}
},
bids: [{
bidder: 'ironSource',
bidder: 'ironsource',
params: {
isOrg: '56f91cd4d3e3660002000033', // Required
floorPrice: 2.00, // Optional
Expand Down
2 changes: 1 addition & 1 deletion test/spec/modules/ironsourceBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ describe('ironsourceAdapter', function () {
];

const bidderRequest = {
bidderCode: 'ironSource',
bidderCode: 'ironsource',
}

it('sends bid request to ENDPOINT via GET', function () {
Expand Down

0 comments on commit eb1aea4

Please sign in to comment.