test(ivy): clean up two parameters in ngtsc_spec.ts inferred as 'any' (#28169)

PR Close #28169
This commit is contained in:
Alex Rickabaugh 2019-01-15 16:50:48 -08:00 committed by Jason Aden
parent 5dbc7d9a63
commit a789a3f532
1 changed files with 2 additions and 2 deletions

View File

@ -1794,11 +1794,11 @@ describe('ngtsc behavioral tests', () => {
`); `);
env.driveMain({ env.driveMain({
beforeTs: [() => sourceFile => { beforeTs: [() => (sourceFile: ts.SourceFile) => {
beforeCount++; beforeCount++;
return sourceFile; return sourceFile;
}], }],
afterTs: [() => sourceFile => { afterTs: [() => (sourceFile: ts.SourceFile) => {
afterCount++; afterCount++;
return sourceFile; return sourceFile;
}], }],