Skip to content

Commit

Permalink
docs(unit-testing): removed unneccecary types
Browse files Browse the repository at this point in the history
  • Loading branch information
xiduzo committed Sep 30, 2024
1 parent b037d3c commit 29fb260
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 29fb260

Please sign in to comment.