From 1e4309edde100e869c26058b0dabcc94e50383b1 Mon Sep 17 00:00:00 2001 From: Pawel Kosiec Date: Thu, 13 Jul 2023 10:10:02 +0200 Subject: [PATCH] Fix migration test flag (#1138) --- test/e2e/migration_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/migration_test.go b/test/e2e/migration_test.go index e5620a299..d6639b9fb 100644 --- a/test/e2e/migration_test.go +++ b/test/e2e/migration_test.go @@ -122,7 +122,7 @@ func TestBotkubeMigration(t *testing.T) { cmd := exec.Command(appCfg.BotkubeBinaryPath, "migrate", "--auto-upgrade", "--skip-open-browser", - "--debug", + "--verbose", fmt.Sprintf("--token=%s", token), fmt.Sprintf("--cloud-api-url=%s", appCfg.BotkubeCloudDevGQLEndpoint), fmt.Sprintf("--instance-name=%s", appCfg.DeploymentName))