aboutsummaryrefslogtreecommitdiff
path: root/tests/cli/cli_test.go
diff options
context:
space:
mode:
authorJakob Unterwurzacher2016-10-16 18:12:37 +0200
committerJakob Unterwurzacher2016-10-16 18:13:26 +0200
commitca3cc5eca37617d617c3e0250e3e3aa683fc2b1e (patch)
tree31799a649cc4d79553aea63ad40b6b5cbbb681c7 /tests/cli/cli_test.go
parentec4a626316550536bf98b430b2510a1340ba2721 (diff)
tests: fix stdin password change test
It was actually testing extpass a second time.
Diffstat (limited to 'tests/cli/cli_test.go')
-rw-r--r--tests/cli/cli_test.go2
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...)