From a06599ef3f4da97d9e3da166b98f23fbb698d10b Mon Sep 17 00:00:00 2001 From: Kristof De Langhe Date: Thu, 24 Dec 2020 14:06:20 +0100 Subject: [PATCH] 74647: Test case fix --- src/app/core/data/root-data.service.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/core/data/root-data.service.spec.ts b/src/app/core/data/root-data.service.spec.ts index baa17b846b..06f2f92dbd 100644 --- a/src/app/core/data/root-data.service.spec.ts +++ b/src/app/core/data/root-data.service.spec.ts @@ -30,7 +30,7 @@ describe('RootDataService', () => { it('should call findByHref using the root endpoint', (done) => { result$.subscribe(() => { - expect((service as any).dataService.findByHref).toHaveBeenCalledWith(rootEndpoint); + expect((service as any).dataService.findByHref).toHaveBeenCalledWith(rootEndpoint, true); done(); }); });