fix types

This commit is contained in:
Denys Vuika
2019-10-24 15:08:11 +01:00
parent c8931f7b58
commit 7d12557a08
3 changed files with 3 additions and 3 deletions

View File

@@ -75,7 +75,7 @@ describe('IdentityUserService', () => {
beforeEach(() => {
const store = {};
spyOn(localStorage, 'getItem').and.callFake( (key: string): String => {
spyOn(localStorage, 'getItem').and.callFake( (key: string): string => {
return store[key] || null;
});
spyOn(localStorage, 'setItem').and.callFake((key: string, value: string): string => {