Skip to content

Commit

Permalink
Merge pull request #3098 from xiduzo/master
Browse files Browse the repository at this point in the history
docs(unit-testing): remove unnecessary types
  • Loading branch information
kamilmysliwiec authored Oct 1, 2024
2 parents b037d3c + 29fb260 commit 3438194
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions content/fundamentals/unit-testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ describe('CatsController', () => {
providers: [CatsService],
}).compile();

catsService = moduleRef.get<CatsService>(CatsService);
catsController = moduleRef.get<CatsController>(CatsController);
catsService = moduleRef.get(CatsService);
catsController = moduleRef.get(CatsController);
});

describe('findAll', () => {
Expand Down

0 comments on commit 3438194

Please sign in to comment.