From 2224ab712d51b8645b02cc313f23506a545fbd56 Mon Sep 17 00:00:00 2001 From: Pete Bacon Darwin Date: Tue, 29 Dec 2020 09:45:23 +0000 Subject: [PATCH] test(compiler-cli): fix up import paths in test code (#40237) These imports were unnecessrily deep, since the files are actually in the same directory. PR Close #40237 --- .../test/compliance/test_helpers/test_runner.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/packages/compiler-cli/test/compliance/test_helpers/test_runner.ts b/packages/compiler-cli/test/compliance/test_helpers/test_runner.ts index c61405dc05..d0de7943cd 100644 --- a/packages/compiler-cli/test/compliance/test_helpers/test_runner.ts +++ b/packages/compiler-cli/test/compliance/test_helpers/test_runner.ts @@ -6,10 +6,11 @@ * found in the LICENSE file at https://angular.io/license */ import {FileSystem} from '../../../src/ngtsc/file_system'; -import {checkExpectations} from '../test_helpers/check_expectations'; -import {CompileResult, initMockTestFileSystem} from '../test_helpers/compile_test'; -import {CompilationMode, ComplianceTest, getAllComplianceTests} from '../test_helpers/get_compliance_tests'; + import {checkErrors, checkNoUnexpectedErrors} from './check_errors'; +import {checkExpectations} from './check_expectations'; +import {CompileResult, initMockTestFileSystem} from './compile_test'; +import {CompilationMode, ComplianceTest, getAllComplianceTests} from './get_compliance_tests'; /** * Set up jasmine specs for each of the compliance tests.