diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-06-28 14:39:40 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-06-28 14:39:40 +0000 |
commit | 1d26cd9ec5ffb2d7823fb6941a001dc8e9a6d1c6 (patch) | |
tree | 59fff1dc77a50a69bf274871ab48229672fbfa5c /t/comp/require.t | |
parent | 871661ef06c9321a672dd21cf8e97cec33e2c5ee (diff) | |
download | perl-1d26cd9ec5ffb2d7823fb6941a001dc8e9a6d1c6.tar.gz |
Fix test count, by Abe Timmerman.
p4raw-id: //depot/perl@19869
Diffstat (limited to 't/comp/require.t')
-rwxr-xr-x | t/comp/require.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/comp/require.t b/t/comp/require.t index 7d1b24010c..c82d535400 100755 --- a/t/comp/require.t +++ b/t/comp/require.t @@ -12,7 +12,7 @@ $i = 1; my $Is_EBCDIC = (ord('A') == 193) ? 1 : 0; my $Is_UTF8 = (${^OPEN} || "") =~ /:utf8/; my $total_tests = 30; -if ($Is_EBCDIC || $Is_UTF8) { $total_tests = 26; } +if ($Is_EBCDIC || $Is_UTF8) { $total_tests = 27; } print "1..$total_tests\n"; sub do_require { |