Skip to content

Commit

Permalink
fix extensions in new bid adapter
Browse files Browse the repository at this point in the history
  • Loading branch information
snapwich committed Feb 19, 2020
1 parent 53c517a commit cc68d93
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions modules/admanBidAdapter.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {registerBidder} from '../src/adapters/bidderFactory';
import { BANNER, NATIVE, VIDEO } from '../src/mediaTypes';
import * as utils from '../src/utils';
import {registerBidder} from '../src/adapters/bidderFactory.js';
import { BANNER, NATIVE, VIDEO } from '../src/mediaTypes.js';
import * as utils from '../src/utils.js';

const BIDDER_CODE = 'adman';
const AD_URL = 'https://pub.admanmedia.com/?c=o&m=multi';
Expand Down
2 changes: 1 addition & 1 deletion test/spec/modules/admanBidAdapter_spec.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {expect} from 'chai';
import {spec} from '../../../modules/admanBidAdapter';
import {spec} from '../../../modules/admanBidAdapter.js';

describe('AdmanMediaBidAdapter', function () {
let bid = {
Expand Down

0 comments on commit cc68d93

Please sign in to comment.