From 29fb260fa55bbc27d7bd301ef87de50073bb035d Mon Sep 17 00:00:00 2001 From: Sander Date: Mon, 30 Sep 2024 18:15:18 +0200 Subject: [PATCH] docs(unit-testing): removed unneccecary types --- content/fundamentals/unit-testing.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/fundamentals/unit-testing.md b/content/fundamentals/unit-testing.md index aa759dc230..b391469bde 100644 --- a/content/fundamentals/unit-testing.md +++ b/content/fundamentals/unit-testing.md @@ -94,8 +94,8 @@ describe('CatsController', () => { providers: [CatsService], }).compile(); - catsService = moduleRef.get(CatsService); - catsController = moduleRef.get(CatsController); + catsService = moduleRef.get(CatsService); + catsController = moduleRef.get(CatsController); }); describe('findAll', () => {