From 6351a951e71e11ae6d63eb8a785ad1165216a32f Mon Sep 17 00:00:00 2001 From: Art Lowel <art@atmire.com> Date: Tue, 7 Apr 2020 11:08:20 +0200 Subject: [PATCH] fix test and lint --- src/app/core/data/request.service.spec.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/core/data/request.service.spec.ts b/src/app/core/data/request.service.spec.ts index 017721fdf9..9f8e20c8b7 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(''); }); }); -- GitLab