@@ -12,7 +12,7 @@ import * as React from 'react';
1212import { IndexRoute , Route , Router , createMemoryHistory , createRoutes , match } from 'react-router-3' ;
1313
1414import type { Match , Route as RouteType } from '../src/reactrouterv3' ;
15- import { browserTracingReactRouterV3Integration } from '../src/reactrouterv3' ;
15+ import { reactRouterV3BrowserTracingIntegration } from '../src/reactrouterv3' ;
1616import { reactRouterV3Instrumentation } from '../src/reactrouterv3' ;
1717
1818// Have to manually set types because we are using package-alias
@@ -319,7 +319,7 @@ describe('browserTracingReactRouterV3', () => {
319319 const client = createMockBrowserClient ( ) ;
320320 setCurrentClient ( client ) ;
321321
322- client . addIntegration ( browserTracingReactRouterV3Integration ( { history, routes : instrumentationRoutes , match } ) ) ;
322+ client . addIntegration ( reactRouterV3BrowserTracingIntegration ( { history, routes : instrumentationRoutes , match } ) ) ;
323323
324324 client . init ( ) ;
325325 render ( < Router history = { history } > { routes } </ Router > ) ;
@@ -340,7 +340,7 @@ describe('browserTracingReactRouterV3', () => {
340340 setCurrentClient ( client ) ;
341341
342342 const history = createMemoryHistory ( ) ;
343- client . addIntegration ( browserTracingReactRouterV3Integration ( { history, routes : instrumentationRoutes , match } ) ) ;
343+ client . addIntegration ( reactRouterV3BrowserTracingIntegration ( { history, routes : instrumentationRoutes , match } ) ) ;
344344
345345 client . init ( ) ;
346346 render ( < Router history = { history } > { routes } </ Router > ) ;
@@ -378,7 +378,7 @@ describe('browserTracingReactRouterV3', () => {
378378 setCurrentClient ( client ) ;
379379
380380 const history = createMemoryHistory ( ) ;
381- client . addIntegration ( browserTracingReactRouterV3Integration ( { history, routes : instrumentationRoutes , match } ) ) ;
381+ client . addIntegration ( reactRouterV3BrowserTracingIntegration ( { history, routes : instrumentationRoutes , match } ) ) ;
382382
383383 client . init ( ) ;
384384 render ( < Router history = { history } > { routes } </ Router > ) ;
@@ -393,7 +393,7 @@ describe('browserTracingReactRouterV3', () => {
393393 const client = createMockBrowserClient ( ) ;
394394
395395 const history = createMemoryHistory ( ) ;
396- client . addIntegration ( browserTracingReactRouterV3Integration ( { history, routes : instrumentationRoutes , match } ) ) ;
396+ client . addIntegration ( reactRouterV3BrowserTracingIntegration ( { history, routes : instrumentationRoutes , match } ) ) ;
397397
398398 client . init ( ) ;
399399 const { container } = render ( < Router history = { history } > { routes } </ Router > ) ;
0 commit comments