From ae7f297dfd4c4acf0bb20deb7dff4fd3891c448f Mon Sep 17 00:00:00 2001 From: Alex Buchanan Date: Wed, 9 Oct 2024 12:27:37 -0700 Subject: [PATCH] go fmt --- internal/cmd/local/local/cmd.go | 16 ++++++++-------- internal/cmd/local/local_test.go | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/internal/cmd/local/local/cmd.go b/internal/cmd/local/local/cmd.go index 1e37820..f6c650f 100644 --- a/internal/cmd/local/local/cmd.go +++ b/internal/cmd/local/local/cmd.go @@ -33,14 +33,14 @@ type Command struct { provider k8s.Provider docker *docker.Docker - http HTTPClient - helm helm.Client - k8s k8s.Client - portHTTP int - spinner *pterm.SpinnerPrinter - tel telemetry.Client - launcher BrowserLauncher - userHome string + http HTTPClient + helm helm.Client + k8s k8s.Client + portHTTP int + spinner *pterm.SpinnerPrinter + tel telemetry.Client + launcher BrowserLauncher + userHome string } // Option for configuring the Command, primarily exists for testing diff --git a/internal/cmd/local/local_test.go b/internal/cmd/local/local_test.go index 246fca0..4f16c01 100644 --- a/internal/cmd/local/local_test.go +++ b/internal/cmd/local/local_test.go @@ -152,10 +152,10 @@ func TestInstallOpts(t *testing.T) { b, _ := os.ReadFile("local/testdata/expected-default.values.yaml") cmd := InstallCmd{ // Don't let the code dynamically resolve the latest chart version. - Chart: "/test/path/to/chart", + Chart: "/test/path/to/chart", } expect := &local.InstallOpts{ - HelmValuesYaml: string(b), + HelmValuesYaml: string(b), AirbyteChartLoc: "/test/path/to/chart", } opts, err := cmd.InstallOpts("test-user")