summaryrefslogtreecommitdiff
path: root/t/t9833-errors.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/t9833-errors.sh')
-rwxr-xr-xt/t9833-errors.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/t/t9833-errors.sh b/t/t9833-errors.sh
index 9ba892d..277d347 100755
--- a/t/t9833-errors.sh
+++ b/t/t9833-errors.sh
@@ -26,7 +26,9 @@ test_expect_success 'error handling' '
) &&
p4 passwd -P newpassword &&
(
- P4PASSWD=badpassword test_must_fail git p4 clone //depot/foo 2>errmsg &&
+ P4PASSWD=badpassword &&
+ export P4PASSWD &&
+ test_must_fail git p4 clone //depot/foo 2>errmsg &&
grep -q "failure accessing depot.*P4PASSWD" errmsg
)
'