Skip to content

Commit

Permalink
chore(js-core): fix an incorrect import format
Browse files Browse the repository at this point in the history
  • Loading branch information
ersimont committed Dec 18, 2021
1 parent 464a9b9 commit c850e95
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion projects/js-core/src/lib/time/stopwatch.spec.ts
Original file line number Diff line number Diff line change
@@ -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(() => {
Expand Down
3 changes: 2 additions & 1 deletion projects/js-core/src/lib/time/stopwatch.ts
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit c850e95

Please sign in to comment.