tests: fix stdin password change test

It was actually testing extpass a second time.
This commit is contained in:
Jakob Unterwurzacher 2016-10-16 18:12:37 +02:00
parent ec4a626316
commit ca3cc5eca3
1 changed files with 1 additions and 1 deletions

View File

@ -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...)