Skip to content

Commit 3438194

Browse files
Merge pull request #3098 from xiduzo/master
docs(unit-testing): remove unnecessary types
2 parents b037d3c + 29fb260 commit 3438194

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/fundamentals/unit-testing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ describe('CatsController', () => {
9494
providers: [CatsService],
9595
}).compile();
9696

97-
catsService = moduleRef.get<CatsService>(CatsService);
98-
catsController = moduleRef.get<CatsController>(CatsController);
97+
catsService = moduleRef.get(CatsService);
98+
catsController = moduleRef.get(CatsController);
9999
});
100100

101101
describe('findAll', () => {

0 commit comments

Comments
 (0)