From 06f1c8b752ff3f2b788773eac42438335bb86a91 Mon Sep 17 00:00:00 2001 From: Eric Biagiotti Date: Wed, 15 May 2019 11:35:08 -0400 Subject: [PATCH] 15088: Fixes tests broken by the merge Arvados-DCO-1.1-Signed-off-by: Eric Biagiotti --- src/store/auth/auth-action.test.ts | 1 + src/store/auth/auth-reducer.test.ts | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/store/auth/auth-action.test.ts b/src/store/auth/auth-action.test.ts index 11f29e45..4a69fc15 100644 --- a/src/store/auth/auth-action.test.ts +++ b/src/store/auth/auth-action.test.ts @@ -64,6 +64,7 @@ describe('auth-actions', () => { sshKeys: [], homeCluster: "zzzzz", localCluster: "zzzzz", + remoteHostsConfig: {}, remoteHosts: { zzzzz: "zzzzz.arvadosapi.com", xc59z: "xc59z.arvadosapi.com" diff --git a/src/store/auth/auth-reducer.test.ts b/src/store/auth/auth-reducer.test.ts index 38cf1581..14d92803 100644 --- a/src/store/auth/auth-reducer.test.ts +++ b/src/store/auth/auth-reducer.test.ts @@ -43,7 +43,8 @@ describe('auth-reducer', () => { sessions: [], homeCluster: "zzzzz", localCluster: "", - remoteHosts: {} + remoteHosts: {}, + remoteHostsConfig: {} }); }); @@ -59,6 +60,7 @@ describe('auth-reducer', () => { homeCluster: "", localCluster: "", remoteHosts: {}, + remoteHostsConfig: {} }); }); @@ -85,6 +87,7 @@ describe('auth-reducer', () => { homeCluster: "", localCluster: "", remoteHosts: {}, + remoteHostsConfig: {}, user: { email: "test@test.com", firstName: "John", -- 2.30.2