summaryrefslogtreecommitdiff
path: root/t/lib
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-08-18 13:35:57 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-08-18 13:35:57 +0000
commitc3d5f6091c78d2ee74b393e25c2d7898a77f0cc8 (patch)
tree13497122c1a9f3dc77fad2afb7bff0b7e0dfa17d /t/lib
parentc567402153be05de9e4e6ef0b23195e50431c6d8 (diff)
downloadperl-c3d5f6091c78d2ee74b393e25c2d7898a77f0cc8.tar.gz
Tiny Getopt::Long patch from Johan Vromans.
p4raw-id: //depot/perl@6697
Diffstat (limited to 't/lib')
-rwxr-xr-xt/lib/gol-basic.t2
-rw-r--r--t/lib/gol-oo.t2
2 files changed, 2 insertions, 2 deletions
diff --git a/t/lib/gol-basic.t b/t/lib/gol-basic.t
index 6707ef1043..0443816863 100755
--- a/t/lib/gol-basic.t
+++ b/t/lib/gol-basic.t
@@ -8,7 +8,7 @@ BEGIN {
use Getopt::Long qw(:config no_ignore_case);
die("Getopt::Long version 2.23_03 required--this is only version ".
$Getopt::Long::VERSION)
- unless $Getopt::Long::VERSION ge "2.23_03";
+ unless $Getopt::Long::VERSION >= 2.23_03;
print "1..9\n";
diff --git a/t/lib/gol-oo.t b/t/lib/gol-oo.t
index 106d54fcc0..b344e4c5df 100644
--- a/t/lib/gol-oo.t
+++ b/t/lib/gol-oo.t
@@ -8,7 +8,7 @@ BEGIN {
use Getopt::Long;
die("Getopt::Long version 2.23_03 required--this is only version ".
$Getopt::Long::VERSION)
- unless $Getopt::Long::VERSION ge "2.23_03";
+ unless $Getopt::Long::VERSION >= 2.23_03;
print "1..9\n";
@ARGV = qw(-Foo -baR --foo bar);