From cb09dafe7b868334d18ebb90670de7f80441054b Mon Sep 17 00:00:00 2001 From: Bob Haddleton Date: Mon, 26 Aug 2024 14:02:07 -0500 Subject: [PATCH] Fix CI errors Signed-off-by: Bob Haddleton --- internal/controller/workspace/workspace_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/controller/workspace/workspace_test.go b/internal/controller/workspace/workspace_test.go index f737456..6097fcb 100644 --- a/internal/controller/workspace/workspace_test.go +++ b/internal/controller/workspace/workspace_test.go @@ -534,7 +534,7 @@ func TestConnect(t *testing.T) { errs: map[string]error{filepath.Join(tfDir, string(uid), tfMainJSON): errBoom}, }, }, - terraform: func(_ string, _ bool, _ ...string) tfclient { + terraform: func(_ string, _ bool, _ bool, _ logging.Logger, _ ...string) tfclient { return &MockTf{ MockInit: func(ctx context.Context, o ...terraform.InitOption) error { return nil }, }