diff options
author | Jakob Unterwurzacher | 2016-10-16 18:12:37 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2016-10-16 18:13:26 +0200 |
commit | ca3cc5eca37617d617c3e0250e3e3aa683fc2b1e (patch) | |
tree | 31799a649cc4d79553aea63ad40b6b5cbbb681c7 | |
parent | ec4a626316550536bf98b430b2510a1340ba2721 (diff) |
tests: fix stdin password change test
It was actually testing extpass a second time.
-rw-r--r-- | tests/cli/cli_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
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...) |