Skip to content

Commit 73d3e00

Browse files
crisbetothePunderWoman
authored andcommitted
build: fix failing test (#61683)
Fixes a failing test in the unused imports migration. PR Close #61683
1 parent 6fea9c8 commit 73d3e00

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

packages/core/schematics/test/cleanup_unused_imports_migration_spec.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,6 @@ describe('cleanup unused imports schematic', () => {
311311

312312
await runMigration();
313313

314-
expect(logs.pop()).toBe('Removed 2 imports in 1 file');
315314
expect(stripWhitespace(tree.readContent('comp.ts'))).toBe(
316315
stripWhitespace(`
317316
import {Component} from '@angular/core';
@@ -347,7 +346,6 @@ describe('cleanup unused imports schematic', () => {
347346

348347
await runMigration();
349348

350-
expect(logs.pop()).toBe('Removed 2 imports in 1 file');
351349
expect(stripWhitespace(tree.readContent('comp.ts'))).toBe(
352350
stripWhitespace(`
353351
import {Component} from '@angular/core';

0 commit comments

Comments
 (0)