diff options
Diffstat (limited to 'tests/cli')
-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 bbaca51..94a8b16 100644 --- a/tests/cli/cli_test.go +++ b/tests/cli/cli_test.go @@ -407,7 +407,7 @@ func TestMountPasswordIncorrect(t *testing.T) { err := test_helpers.Mount(cDir, pDir, false, "-extpass", "echo WRONG", "-wpanic=false", "-ctlsock", ctlSock) exitCode := test_helpers.ExtractCmdExitCode(err) if exitCode != exitcodes.PasswordIncorrect { - t.Errorf("want=%d, got=%d", exitcodes.PasswordIncorrect, exitCode) + t.Errorf("wrong exit code: want=%d, have=%d", exitcodes.PasswordIncorrect, exitCode) } if _, err := os.Stat(ctlSock); err == nil { t.Errorf("socket file %q left behind", ctlSock) |