From becb94587e1d5f152a6de7d022b6bbeed99907f9 Mon Sep 17 00:00:00 2001 From: Hank Stoever Date: Fri, 17 May 2024 06:36:51 -0700 Subject: [PATCH] fix: importing clarigen/core in local tests --- packages/core/test/abi-types.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/core/test/abi-types.test.ts b/packages/core/test/abi-types.test.ts index 12b2119..cba0c24 100644 --- a/packages/core/test/abi-types.test.ts +++ b/packages/core/test/abi-types.test.ts @@ -8,8 +8,8 @@ import type { // ClarityAbiType, ClarityAbiTypeUInt128, ClarityAbiTypeBool, -} from '@clarigen/core'; -import { contractsFactory } from '@clarigen/core'; +} from '../src'; +import { contractsFactory } from '../src'; import { test, expect } from 'vitest'; export type ClarityAbiType = ClarityAbiTypeTuple | ClarityAbiTypeUInt128 | ClarityAbiTypeBool;