@@ -12,7 +12,6 @@ import {
12
12
withMonitor ,
13
13
} from '../../src' ;
14
14
import type { BaseClient , Client } from '../../src/client' ;
15
- import { _makeInternalError } from '../../src/client' ;
16
15
import * as integrationModule from '../../src/integration' ;
17
16
import type { Envelope , ErrorEvent , Event , SpanJSON , TransactionEvent } from '../../src/types-hoist' ;
18
17
import * as loggerModule from '../../src/utils-hoist/logger' ;
@@ -1294,7 +1293,7 @@ describe('Client', () => {
1294
1293
expect ( beforeSend ) . toHaveBeenCalled ( ) ;
1295
1294
expect ( TestClient . instance ! . event ) . toBeUndefined ( ) ;
1296
1295
expect ( loggerWarnSpy ) . toBeCalledWith (
1297
- _makeInternalError ( 'before send for type `error` must return `null` or a valid event.' ) . message ,
1296
+ 'before send for type `error` must return `null` or a valid event.' ,
1298
1297
) ;
1299
1298
}
1300
1299
} ) ;
@@ -1315,7 +1314,7 @@ describe('Client', () => {
1315
1314
expect ( beforeSendTransaction ) . toHaveBeenCalled ( ) ;
1316
1315
expect ( TestClient . instance ! . event ) . toBeUndefined ( ) ;
1317
1316
expect ( loggerWarnSpy ) . toBeCalledWith (
1318
- _makeInternalError ( 'before send for type `transaction` must return `null` or a valid event.' ) . message ,
1317
+ 'before send for type `transaction` must return `null` or a valid event.' ,
1319
1318
) ;
1320
1319
}
1321
1320
} ) ;
@@ -1688,9 +1687,9 @@ describe('Client', () => {
1688
1687
originalException : exception ,
1689
1688
} ) ;
1690
1689
expect ( loggerWarnSpy ) . toBeCalledWith (
1691
- _makeInternalError (
1690
+
1692
1691
`Event processing pipeline threw an error, original event will not be sent. Details have been sent as a new event.\nReason: ${ exception } ` ,
1693
- ) . message ,
1692
+ ,
1694
1693
) ;
1695
1694
} ) ;
1696
1695
0 commit comments