Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/t/t9700
diff options
context:
space:
mode:
authorBrandon Casey <drafnel@gmail.com>2010-06-29 02:51:02 +0400
committerJunio C Hamano <gitster@pobox.com>2010-06-29 20:32:56 +0400
commit15eeb6e921a08f2565192701c6b1ee5f1cbe9753 (patch)
tree99558f59392d6bf5c50435d15e8374c797542430 /t/t9700
parent635155fa3d825570080d727245a76e666bbae145 (diff)
t/t9700/test.pl: don't access private object members, use public access methods
This test is accessing private object members of the Test::More and Test::Builder objects. Older versions of Test::More did not implement these variables using a hash. My system complains as follows: Can't coerce array into hash at <snip>/t/t9700/test.pl line 13. BEGIN failed--compilation aborted at <snip>/t/t9700/test.pl line 15. There are public access methods available for retrieving and setting these variables, so let's use them instead. Signed-off-by: Brandon Casey <casey@nrlssc.navy.mil> Acked-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t9700')
-rwxr-xr-xt/t9700/test.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/t9700/test.pl b/t/t9700/test.pl
index f2820d2f26..671f38db2b 100755
--- a/t/t9700/test.pl
+++ b/t/t9700/test.pl
@@ -10,8 +10,8 @@ use Test::More qw(no_plan);
BEGIN {
# t9700-perl-git.sh kicks off our testing, so we have to go from
# there.
- Test::More->builder->{Curr_Test} = 1;
- Test::More->builder->{No_Ending} = 1;
+ Test::More->builder->current_test(1);
+ Test::More->builder->no_ending(1);
}
use Cwd;
@@ -113,7 +113,7 @@ like($last_commit, qr/^[0-9a-fA-F]{40}$/, 'rev-parse returned hash');
my $dir_commit = $r2->command_oneline('log', '-n1', '--pretty=format:%H', '.');
isnt($last_commit, $dir_commit, 'log . does not show last commit');
-printf "1..%d\n", Test::More->builder->{Curr_Test};
+printf "1..%d\n", Test::More->builder->current_test;
my $is_passing = eval { Test::More->is_passing };
exit($is_passing ? 0 : 1) unless $@ =~ /Can't locate object method/;