From c850e95f328e7d133cc043449fd85482a3091ec0 Mon Sep 17 00:00:00 2001 From: ersimont <8042088+ersimont@users.noreply.github.com> Date: Fri, 17 Dec 2021 21:43:39 -0500 Subject: [PATCH] chore(js-core): fix an incorrect import format --- projects/js-core/src/lib/time/stopwatch.spec.ts | 2 +- projects/js-core/src/lib/time/stopwatch.ts | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/projects/js-core/src/lib/time/stopwatch.spec.ts b/projects/js-core/src/lib/time/stopwatch.spec.ts index 2b73174a..c7e921b3 100644 --- a/projects/js-core/src/lib/time/stopwatch.spec.ts +++ b/projects/js-core/src/lib/time/stopwatch.spec.ts @@ -1,6 +1,6 @@ import { fakeAsync, tick } from '@angular/core/testing'; -import { convertTime } from '@s-libs/js-core'; import { Stopwatch } from './stopwatch'; +import { convertTime } from './time-utils'; describe('Stopwatch', () => { beforeEach(() => { diff --git a/projects/js-core/src/lib/time/stopwatch.ts b/projects/js-core/src/lib/time/stopwatch.ts index e7275362..c9791d4f 100644 --- a/projects/js-core/src/lib/time/stopwatch.ts +++ b/projects/js-core/src/lib/time/stopwatch.ts @@ -1,4 +1,5 @@ -import { elapsedToString, isDefined } from '@s-libs/js-core'; +import { isDefined } from '../predicates'; +import { elapsedToString } from './time-utils'; /** * Keeps track of elapsed time.