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

Commit 59037f2

Browse files
committed
fixup! Migrate to urfave/cli/v2
1 parent 49bdb3e commit 59037f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ci/integration/secrets_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,10 @@ 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 %s --from-literal %s --from-file ~/secret.json", name, value)).Assert(t,
87+
c.Run(ctx, fmt.Sprintf("coder secrets create --from-literal %s %s --from-file ~/secret.json", name, value)).Assert(t,
8888
tcli.Error(),
8989
)
90-
c.Run(ctx, fmt.Sprintf("coder secrets create %s --from-file ~/secret.json", name)).Assert(t,
90+
c.Run(ctx, fmt.Sprintf("coder secrets create --from-file ~/secret.json %s", name)).Assert(t,
9191
tcli.Success(),
9292
)
9393
//

0 commit comments

Comments
 (0)