From 9e0d34a074011ce09cf9c6d88cb2b9f123d2c86d Mon Sep 17 00:00:00 2001 From: Michael Toy <66150587+mtoy-googly-moogly@users.noreply.github.com> Date: Thu, 2 Jan 2025 10:55:38 -0800 Subject: [PATCH] fix core files --- test/src/core/api.spec.ts | 2 +- test/src/core/events.spec.ts | 2 +- test/src/core/experimental-dialects.spec.ts | 2 +- test/src/core/jestMatcher.spec.ts | 2 +- test/src/core/tags.spec.ts | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/test/src/core/api.spec.ts b/test/src/core/api.spec.ts index 85a673ac3..2e42fc720 100644 --- a/test/src/core/api.spec.ts +++ b/test/src/core/api.spec.ts @@ -22,7 +22,7 @@ * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -import {runtimeFor} from './runtimes'; +import {runtimeFor} from '../runtimes'; import './util/db-jest-matchers'; const runtime = runtimeFor('duckdb'); diff --git a/test/src/core/events.spec.ts b/test/src/core/events.spec.ts index b422e1ccf..b45e98377 100644 --- a/test/src/core/events.spec.ts +++ b/test/src/core/events.spec.ts @@ -5,7 +5,7 @@ * LICENSE file in the root directory of this source tree. */ -import {runtimeFor} from './runtimes'; +import {runtimeFor} from '../runtimes'; import './util/db-jest-matchers'; const runtime = runtimeFor('duckdb'); diff --git a/test/src/core/experimental-dialects.spec.ts b/test/src/core/experimental-dialects.spec.ts index 8459034e1..426c23529 100644 --- a/test/src/core/experimental-dialects.spec.ts +++ b/test/src/core/experimental-dialects.spec.ts @@ -28,7 +28,7 @@ import { SQLSourceDef, registerDialect, } from '@malloydata/malloy'; -import {testRuntimeFor} from './runtimes'; +import {testRuntimeFor} from '../runtimes'; import './util/db-jest-matchers'; import {DuckDBConnection} from '@malloydata/db-duckdb'; diff --git a/test/src/core/jestMatcher.spec.ts b/test/src/core/jestMatcher.spec.ts index ab95eabca..9b3675816 100644 --- a/test/src/core/jestMatcher.spec.ts +++ b/test/src/core/jestMatcher.spec.ts @@ -22,7 +22,7 @@ * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -import {runtimeFor} from './runtimes'; +import {runtimeFor} from '../runtimes'; import './util/db-jest-matchers'; const runtime = runtimeFor('duckdb'); diff --git a/test/src/core/tags.spec.ts b/test/src/core/tags.spec.ts index 0be09d1da..21f870deb 100644 --- a/test/src/core/tags.spec.ts +++ b/test/src/core/tags.spec.ts @@ -22,7 +22,7 @@ */ import {TagDict, Tag} from '@malloydata/malloy'; -import {runtimeFor} from './runtimes'; +import {runtimeFor} from '../runtimes'; declare global { // eslint-disable-next-line @typescript-eslint/no-namespace