Skip to content

Commit

Permalink
refactor(core): typo in undecorated-classes-with-di AOT failure messa…
Browse files Browse the repository at this point in the history
…ge (#33018)

PR Close #33018
  • Loading branch information
Splaktar authored and atscott committed Nov 4, 2019
1 parent c83f501 commit 5437e2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -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;
}
Expand Down
Expand Up @@ -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(' '))
Expand Down

0 comments on commit 5437e2d

Please sign in to comment.