1
0

74647: Test case fix

This commit is contained in:
Kristof De Langhe
2020-12-24 14:06:20 +01:00
parent aed0750d47
commit a06599ef3f

View File

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