Skip to content

Commit

Permalink
chore(component): fix import order
Browse files Browse the repository at this point in the history
  • Loading branch information
markostanimirovic committed Apr 8, 2022
1 parent 2c71c61 commit 648713b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions modules/component/spec/core/potential-observable.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { fromPotentialObservable } from '../../src/core/potential-observable';
import { TestScheduler } from 'rxjs/testing';
import { of } from 'rxjs';
import { TestScheduler } from 'rxjs/testing';
import { fromPotentialObservable } from '../../src/core/potential-observable';

describe('fromPotentialObservable', () => {
function setup() {
Expand Down
1 change: 0 additions & 1 deletion modules/component/spec/let/let.directive.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ import {
throwError,
} from 'rxjs';
import { take } from 'rxjs/operators';

import { LetDirective } from '../../src/let/let.directive';
import { MockChangeDetectorRef } from '../fixtures/fixtures';

Expand Down
1 change: 0 additions & 1 deletion modules/component/spec/push/push.pipe.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import {
waitForAsync,
} from '@angular/core/testing';
import { EMPTY, NEVER, Observable, ObservableInput, of } from 'rxjs';

import { PushPipe } from '../../src/push/push.pipe';
import { MockChangeDetectorRef } from '../fixtures/fixtures';

Expand Down

0 comments on commit 648713b

Please sign in to comment.