From d6c50f9aa6c726ff09559d820c19bb9740e9dc19 Mon Sep 17 00:00:00 2001 From: Kazuki Shimizu Date: Sun, 30 Jun 2024 20:15:18 +0900 Subject: [PATCH] update tnconfig structure in testcases --- internal/pkg/shell/shell_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal/pkg/shell/shell_test.go b/internal/pkg/shell/shell_test.go index 561fc89..18fb794 100644 --- a/internal/pkg/shell/shell_test.go +++ b/internal/pkg/shell/shell_test.go @@ -229,6 +229,7 @@ func TestTn_Exec(t *testing.T) { type fields struct { PreCmd []PreCmd PreInit []PreInit + PreConf []PreConf PostInit []PostInit PostFini []PostFini Nodes []Node @@ -253,6 +254,7 @@ func TestTn_Exec(t *testing.T) { tnconfig := &Tn{ PreCmd: tt.fields.PreCmd, PreInit: tt.fields.PreInit, + PreConf: tt.fields.PreConf, PostInit: tt.fields.PostInit, PostFini: tt.fields.PostFini, Nodes: tt.fields.Nodes,