From ca3cc5eca37617d617c3e0250e3e3aa683fc2b1e Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Sun, 16 Oct 2016 18:12:37 +0200 Subject: [PATCH] tests: fix stdin password change test It was actually testing extpass a second time. --- tests/cli/cli_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cli/cli_test.go b/tests/cli/cli_test.go index bc500db..18230d4 100644 --- a/tests/cli/cli_test.go +++ b/tests/cli/cli_test.go @@ -68,7 +68,7 @@ func testPasswd(t *testing.T, dir string, extraArgs ...string) { t.Error(err) } // Change password using stdin - args = []string{"-q", "-passwd", "-extpass", "echo test"} + args = []string{"-q", "-passwd"} args = append(args, extraArgs...) args = append(args, dir) cmd = exec.Command(test_helpers.GocryptfsBinary, args...)