From e5535b1bfc9b702ca66d8501a68d4cbeb4e14a93 Mon Sep 17 00:00:00 2001 From: Eugenio Romano Date: Mon, 25 Jun 2018 14:26:34 +0100 Subject: [PATCH] fix test --- lib/core/services/authentication.service.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/services/authentication.service.spec.ts b/lib/core/services/authentication.service.spec.ts index ef0ee38202..072bb9934b 100644 --- a/lib/core/services/authentication.service.spec.ts +++ b/lib/core/services/authentication.service.spec.ts @@ -311,7 +311,7 @@ describe('AuthenticationService', () => { }, (err: any) => { expect(err).toBeDefined(); - expect(authService.getTicketBpm()).toBe(null); + expect(authService.getTicketBpm()).toBe(undefined); done(); });