Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Commit 4117e93

Browse files
committed
fixup! fixup! fixup! Migrate to urfave/cli/v2
1 parent adb183a commit 4117e93

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

ci/integration/secrets_test.go

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ func TestSecrets(t *testing.T) {
7070

7171
name, value = randString(8), randString(8)
7272

73-
c.Run(ctx, fmt.Sprintf("coder secrets create %s --from-literal %s", name, value)).Assert(t,
73+
c.Run(ctx, fmt.Sprintf("coder secrets create --from-literal %s %s", value, name)).Assert(t,
7474
tcli.Success(),
7575
tcli.StderrEmpty(),
7676
)
@@ -84,9 +84,6 @@ func TestSecrets(t *testing.T) {
8484
c.Run(ctx, fmt.Sprintf("echo %s > ~/secret.json", value)).Assert(t,
8585
tcli.Success(),
8686
)
87-
c.Run(ctx, fmt.Sprintf("coder secrets create --from-literal %s %s --from-file ~/secret.json", name, value)).Assert(t,
88-
tcli.Error(),
89-
)
9087
c.Run(ctx, fmt.Sprintf("coder secrets create --from-file ~/secret.json %s", name)).Assert(t,
9188
tcli.Success(),
9289
)

0 commit comments

Comments
 (0)