We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db79518 commit 86080e5Copy full SHA for 86080e5
test/integration/addons_test.go
@@ -77,7 +77,7 @@ func TestAddons(t *testing.T) {
77
// If we're running the integration tests on GCE, which is frequently the case, first check to make sure we exit out properly,
78
// then use force to actually test using creds.
79
if detect.IsOnGCE() {
80
- args = append([]string{"addons", "enable", "gcp-auth", "-p", profile}, StartArgs()...)
+ args = []string{"-p", profile, "addons", "enable", "gcp-auth"}
81
rr, err := Run(t, exec.CommandContext(ctx, Target(), args...))
82
if err == nil {
83
t.Errorf("Expected error but didn't get one. command %v, output %v", rr.Command(), rr.Output())
0 commit comments