Change 18607 by ams@lustre on 2003/01/31 02:29:56
Fix typo in version check ($[ to $]).
Affected files ...
... //depot/perl/ext/Storable/t/restrict.t#8 edit
Differences ...
==== //depot/perl/ext/Storable/t/restrict.t#8 (text) ====
Index: perl/ext/Storable/t/restrict.t
--- perl/ext/Storable/t/restrict.t#7~18008~ Sat Oct 12 07:38:19 2002
+++ perl/ext/Storable/t/restrict.t Thu Jan 30 18:29:56 2003
@@ -16,7 +16,7 @@
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
End of Patch.