diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2008-08-08 07:59:13 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-08-08 18:52:20 -0700 |
commit | ff30fff38c09dac7c1349fb774c55daa8fd92972 (patch) | |
tree | 4172ea1ef7392ea14007a22736d7b2440cf69ca6 /t/t9700 | |
parent | 1fdf6ee6f81b31b299a8039832f45290faa4583a (diff) | |
download | git-ff30fff38c09dac7c1349fb774c55daa8fd92972.tar.gz |
t9700: remove useless check
t9700 used to check if the basename of the current directory is
'trash directory', the expensive way.
However, there is absolutely no good reason why this test should not
run in, say 'life is good' or 'i love tests'. So remove the check
altogether.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t9700')
-rwxr-xr-x | t/t9700/test.pl | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/t/t9700/test.pl b/t/t9700/test.pl index 4d2312548a..851cea4a4b 100755 --- a/t/t9700/test.pl +++ b/t/t9700/test.pl @@ -14,10 +14,7 @@ use File::Temp; BEGIN { use_ok('Git') } # set up -our $repo_dir = "trash directory"; our $abs_repo_dir = Cwd->cwd; -die "this must be run by calling the t/t97* shell script(s)\n" - if basename(Cwd->cwd) ne $repo_dir; ok(our $r = Git->repository(Directory => "."), "open repository"); # config |