diff options
author | Abhijit Menon-Sen <ams@wiw.org> | 2003-01-31 02:29:56 +0000 |
---|---|---|
committer | Abhijit Menon-Sen <ams@wiw.org> | 2003-01-31 02:29:56 +0000 |
commit | 68c03c1a4a512137101420548514238e4d2d85e5 (patch) | |
tree | ffd85ddf00aebc703719aa5d853bf70a5f1531c3 /ext | |
parent | 68cd2d32d62fbb83ad09510797bfdbcf6ec6309e (diff) | |
download | perl-68c03c1a4a512137101420548514238e4d2d85e5.tar.gz |
Fix typo in version check ($[ to $]).
p4raw-id: //depot/perl@18607
Diffstat (limited to 'ext')
-rw-r--r-- | ext/Storable/t/restrict.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Storable/t/restrict.t b/ext/Storable/t/restrict.t index 4ab6d86813..9359f216d6 100644 --- a/ext/Storable/t/restrict.t +++ b/ext/Storable/t/restrict.t @@ -16,7 +16,7 @@ sub BEGIN { exit 0; } } else { - if ($[ < 5.005) { + if ($] < 5.005) { print "1..0 # Skip: No Hash::Util pre 5.005\n"; exit 0; # And doing this seems on 5.004 seems to create bogus warnings about |