refactor(core): typo in undecorated-classes-with-di AOT failure message (#33018)

PR Close #33018
This commit is contained in:
Michael Prentice 2019-10-05 22:19:04 -04:00 committed by atscott
parent c83f5013bf
commit 5437e2da29
2 changed files with 2 additions and 2 deletions

View File

@ -177,7 +177,7 @@ function gracefullyCreateProgram(
return {program, compiler};
} catch (e) {
logger.warn(`\n${MIGRATION_AOT_FAILURE}. The following project failed: ${tsconfigPath}\n`);
logger.warn(`\n${MIGRATION_AOT_FAILURE} The following project failed: ${tsconfigPath}\n`);
logger.error(`${e.toString()}\n`);
return null;
}

View File

@ -1447,7 +1447,7 @@ describe('Undecorated classes with DI migration', () => {
expect(warnOutput.length).toBe(1);
expect(warnOutput[0])
.toMatch(
/ensure there are no AOT compilation errors and rerun the migration.*project failed: tsconfig\.json/);
/ensure there are no AOT compilation errors and rerun the migration. The following project failed: tsconfig\.json/);
expect(errorOutput.length).toBe(1);
expect(errorOutput[0]).toMatch(/Cannot determine the module for class TestComp/);
expect(infoOutput.join(' '))