Skip to content

Commit d5621a0

Browse files
crisbetojelbourn
authored andcommitted
refactor(cdk/schematics): remove circular dependency (#19787)
Changes an import in order to avoid a ciruclar dependency.
1 parent 94d3fda commit d5621a0

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

goldens/ts-circular-deps.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,6 @@
2929
"src/cdk/drag-drop/drag-ref.ts",
3030
"src/cdk/drag-drop/drop-list-ref.ts"
3131
],
32-
[
33-
"src/cdk/schematics/testing/index.ts",
34-
"src/cdk/schematics/testing/test-case-setup.ts"
35-
],
3632
[
3733
"src/cdk/scrolling/scroll-dispatcher.ts",
3834
"src/cdk/scrolling/scrollable.ts"

src/cdk/schematics/testing/test-case-setup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import {readFileSync, removeSync} from 'fs-extra';
1414
import {sync as globSync} from 'glob';
1515
import {basename, extname, join, relative, sep} from 'path';
1616
import {EMPTY} from 'rxjs';
17-
import {createTestApp} from '../testing';
17+
import {createTestApp} from './test-app';
1818

1919
/** Suffix that indicates whether a given file is a test case input. */
2020
const TEST_CASE_INPUT_SUFFIX = '_input.ts';

0 commit comments

Comments
 (0)