diff --git a/src/app/core/data/request.service.spec.ts b/src/app/core/data/request.service.spec.ts index 017721fdf9a5e65efb2d92051ea6996e268d9d8c..9f8e20c8b77167df9f8a79a6153df11a03758852 100644 --- a/src/app/core/data/request.service.spec.ts +++ b/src/app/core/data/request.service.spec.ts @@ -162,7 +162,7 @@ describe('RequestService', () => { }); }); - describe('if the request with the specified UUID doesn\'t exist in the store', () => { + describe(`if the request with the specified UUID doesn't exist in the store `, () => { beforeEach(() => { selectSpy.and.callFake(() => { return () => { @@ -171,10 +171,10 @@ describe('RequestService', () => { }); }); - it('should return an Observable of undefined', () => { + it(`it shouldn't return anything`, () => { const result = service.getByUUID(testUUID); - scheduler.expectObservable(result).toBe('b', { b: undefined }); + scheduler.expectObservable(result).toBe(''); }); });