diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-11-22 16:40:52 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-11-22 16:40:52 -0800 |
commit | 038188637e105e2e0d35bf844797dcadd693eb3e (patch) | |
tree | 7ea2720c0a330075b4e4d3e6feaf7cdeff81184d | |
parent | Merge branch 'ls/maint-mailinfo-no-inbody' (diff) | |
parent | t9700-perl-git.sh: Fix a test failure on Cygwin (diff) | |
download | tgif-038188637e105e2e0d35bf844797dcadd693eb3e.tar.xz |
Merge branch 'rj/maint-t9700'
* rj/maint-t9700:
t9700-perl-git.sh: Fix a test failure on Cygwin
-rwxr-xr-x | t/t9700/test.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t9700/test.pl b/t/t9700/test.pl index 6c70aec020..666722d9bf 100755 --- a/t/t9700/test.pl +++ b/t/t9700/test.pl @@ -13,7 +13,7 @@ use File::Basename; BEGIN { use_ok('Git') } # set up -our $abs_repo_dir = Cwd->cwd; +our $abs_repo_dir = cwd(); ok(our $r = Git->repository(Directory => "."), "open repository"); # config |