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(); }); });