From 7108a1b63584de629f0632f8179304216a5ec9bb Mon Sep 17 00:00:00 2001 From: Janicki Artur Date: Thu, 29 Nov 2018 14:16:12 +0100 Subject: [PATCH] refs #master fix auth actions test Arvados-DCO-1.1-Signed-off-by: Janicki Artur --- src/store/auth/auth-actions.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/store/auth/auth-actions.test.ts b/src/store/auth/auth-actions.test.ts index 3d6913a6..c54438b1 100644 --- a/src/store/auth/auth-actions.test.ts +++ b/src/store/auth/auth-actions.test.ts @@ -43,7 +43,7 @@ describe('auth-actions', () => { localStorage.setItem(USER_LAST_NAME_KEY, "Doe"); localStorage.setItem(USER_UUID_KEY, "uuid"); localStorage.setItem(USER_OWNER_UUID_KEY, "ownerUuid"); - localStorage.setItem(USER_IS_ADMIN, JSON.stringify(false)); + localStorage.setItem(USER_IS_ADMIN, JSON.stringify("false")); store.dispatch(initAuth()); @@ -56,7 +56,7 @@ describe('auth-actions', () => { lastName: "Doe", uuid: "uuid", ownerUuid: "ownerUuid", - isAdmin: false + isAdmin: true } }); }); -- 2.30.2