Skip to content

Commit 86f5251

Browse files
author
cod1k
committed
Double import fix
1 parent 16578ab commit 86f5251

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/cloudflare/test/integrations/fetch.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import type { HandlerDataFetch, Integration } from '@sentry/core';
22
import * as sentryCore from '@sentry/core';
3-
import * as sentryUtils from '@sentry/core';
43
import { createStackParser } from '@sentry/core';
54
import { beforeEach, describe, expect, it, vi } from 'vitest';
65
import { CloudflareClient } from '../../src/client';
@@ -12,7 +11,7 @@ class FakeClient extends CloudflareClient {
1211
}
1312
}
1413

15-
const addFetchInstrumentationHandlerSpy = vi.spyOn(sentryUtils, 'addFetchInstrumentationHandler');
14+
const addFetchInstrumentationHandlerSpy = vi.spyOn(sentryCore, 'addFetchInstrumentationHandler');
1615
const instrumentFetchRequestSpy = vi.spyOn(sentryCore, 'instrumentFetchRequest');
1716
const addBreadcrumbSpy = vi.spyOn(sentryCore, 'addBreadcrumb');
1817

0 commit comments

Comments
 (0)