From c2a7e26cb80a30b7da619d47da3ad92817fe80c5 Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Fri, 12 Jan 2024 11:29:22 -0500 Subject: [PATCH] Use correct import paths (#51) --- tests/test-app/tests/utils/helper/js-test.ts | 2 +- tests/test-app/tests/utils/link-test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test-app/tests/utils/helper/js-test.ts b/tests/test-app/tests/utils/helper/js-test.ts index a84350f..8191e79 100644 --- a/tests/test-app/tests/utils/helper/js-test.ts +++ b/tests/test-app/tests/utils/helper/js-test.ts @@ -5,7 +5,7 @@ import { settled } from '@ember/test-helpers'; import { module, test } from 'qunit'; import { setupTest } from 'ember-qunit'; -import { helper } from 'ember-resources/util/helper'; +import { helper } from 'reactiveweb/helper'; // not testing in template, because that's the easy part module('Utils | helper | js', function (hooks) { diff --git a/tests/test-app/tests/utils/link-test.ts b/tests/test-app/tests/utils/link-test.ts index d1649eb..bacd7f1 100644 --- a/tests/test-app/tests/utils/link-test.ts +++ b/tests/test-app/tests/utils/link-test.ts @@ -3,7 +3,7 @@ import Service, { inject as service } from '@ember/service'; import { module, test } from 'qunit'; import { setupTest } from 'ember-qunit'; -import { link } from 'ember-resources/link'; +import { link } from 'reactiveweb/link'; module('@link', function (hooks) { setupTest(hooks);