Skip to content

Commit b010020

Browse files
committed
chore: fix imports
1 parent 9b21ea3 commit b010020

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/event-handler/tests/unit/AppSyncEventsResolver.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ import { beforeEach, describe, expect, it, vi } from 'vitest';
44
import {
55
AppSyncEventsResolver,
66
UnauthorizedException,
7-
} from '../../../src/appsync-events/index.js';
8-
import type { AppSyncEventsSubscribeEvent } from '../../../src/types/appsync-events.js';
7+
} from '../../src/appsync-events/index.js';
8+
import type { AppSyncEventsSubscribeEvent } from '../../src/types/appsync-events.js';
99
import {
1010
onPublishEventFactory,
1111
onSubscribeEventFactory,
12-
} from '../../helpers/factories.js';
12+
} from '../helpers/factories.js';
1313

1414
describe('Class: AppSyncEventsResolver', () => {
1515
beforeEach(() => {

0 commit comments

Comments
 (0)