diff options
author | Michael Haggerty <mhagger@alum.mit.edu> | 2012-09-07 00:40:59 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-09-06 16:19:58 -0700 |
commit | a0601dc11fab5b4525a348b2ad6c9bb92529a281 (patch) | |
tree | 628295dbf72b172bd4a0b11148097f4f178cc616 /t/t0060-path-utils.sh | |
parent | 17264bcc4f580d5e2a94703967236e770f6e236f (diff) | |
download | git-a0601dc11fab5b4525a348b2ad6c9bb92529a281.tar.gz |
absolute_path(): reject the empty string
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t0060-path-utils.sh')
-rwxr-xr-x | t/t0060-path-utils.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t0060-path-utils.sh b/t/t0060-path-utils.sh index d91e516750..924aa607d7 100755 --- a/t/t0060-path-utils.sh +++ b/t/t0060-path-utils.sh @@ -140,7 +140,7 @@ test_expect_success 'strip_path_suffix' ' c:/msysgit/libexec//git-core libexec/git-core) ' -test_expect_failure 'absolute path rejects the empty string' ' +test_expect_success 'absolute path rejects the empty string' ' test_must_fail test-path-utils absolute_path "" ' |