Skip to content

Commit 5a12d6f

Browse files
committed
fix import error
1 parent f117bfa commit 5a12d6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

aws-distro-opentelemetry-node-autoinstrumentation/test/otlp-aws-span-exporter.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
22
// SPDX-License-Identifier: Apache-2.0
33
import expect from 'expect';
4-
import { OTLPAwsSpanExporter } from '../src/exporter/otlp-aws-span-exporter';
54
import * as sinon from 'sinon';
5+
import { OTLPAwsSpanExporter } from '../src/exporter/otlp-aws-span-exporter';
66
import * as proxyquire from 'proxyquire';
77
import * as nock from 'nock';
88
import { getNodeVersion } from '../src/utils';
@@ -36,7 +36,7 @@ if (nodeVersion >= 16) {
3636
return [200, ''];
3737
});
3838

39-
mockModule = proxyquire('../src/otlp-aws-span-exporter', {
39+
mockModule = proxyquire('../src/exporter/otlp-aws-span-exporter', {
4040
'@smithy/signature-v4': {
4141
SignatureV4: class MockSignatureV4 {
4242
sign(req: any) {

0 commit comments

Comments
 (0)