Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change ironsource to be lower case all over code #5649

Merged
merged 1 commit into from
Aug 26, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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