From 4e34385f1add67f206da4307d1e033b6827d3720 Mon Sep 17 00:00:00 2001 From: Gurusamy Sarathy Date: Thu, 10 Aug 2000 08:38:39 +0000 Subject: warn is a macro, avoid using at a variable to avoid warnings in some configurations; readdir.t is too conservative in estimating number of *.t's p4raw-id: //depot/perl@6562 --- t/op/readdir.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 't/op/readdir.t') diff --git a/t/op/readdir.t b/t/op/readdir.t index d101c2f622..9da560c669 100755 --- a/t/op/readdir.t +++ b/t/op/readdir.t @@ -20,7 +20,7 @@ if (opendir(OP, "op")) { print "ok 1\n"; } else { print "not ok 1\n"; } @D = grep(/^[^\.].*\.t$/i, readdir(OP)); closedir(OP); -if (@D > 20 && @D < 100) { print "ok 2\n"; } else { print "not ok 2\n"; } +if (@D > 20 && @D < 150) { print "ok 2\n"; } else { print "not ok 2\n"; } @R = sort @D; @G = sort ; -- cgit v1.2.1