Skip to content

Commit

Permalink
Fix imports of events in browsiRtdProvider to work with prebid#7935
Browse files Browse the repository at this point in the history
  • Loading branch information
dgirardi committed Mar 17, 2022
1 parent 3f99fa7 commit 439e324
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/browsiRtdProvider.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import {loadExternalScript} from '../src/adloader.js';
import {getStorageManager} from '../src/storageManager.js';
import {find, includes} from '../src/polyfill.js';
import {getGlobal} from '../src/prebidGlobal.js';
import events from '../src/events.js';
import * as events from '../src/events.js';
import CONSTANTS from '../src/constants.json';

const storage = getStorageManager();
Expand Down
2 changes: 1 addition & 1 deletion test/spec/modules/browsiRtdProvider_spec.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as browsiRTD from '../../../modules/browsiRtdProvider.js';
import {makeSlot} from '../integration/faker/googletag.js';
import * as utils from '../../../src/utils'
import {default as events} from '../../../src/events';
import * as events from '../../../src/events';
import * as sinon from 'sinon';

describe('browsi Real time data sub module', function () {
Expand Down

0 comments on commit 439e324

Please sign in to comment.