diff options
author | John Peacock <jpeacock@rowman.com> | 2002-10-04 19:15:10 -0400 |
---|---|---|
committer | hv <hv@crypt.org> | 2002-10-10 11:19:57 +0000 |
commit | ad63d80fcd28c3b5fdbb5328f0f8ea29cbce94d8 (patch) | |
tree | 35708f6fc83804559779fb7c279cae43507579ca /t/comp | |
parent | d2b7433c48dc7d27927575c53e6065b136942905 (diff) | |
download | perl-ad63d80fcd28c3b5fdbb5328f0f8ea29cbce94d8.tar.gz |
Version object combined patch
Message-ID: <3D9E593E.1060605@rowman.com>
p4raw-id: //depot/perl@17990
Diffstat (limited to 't/comp')
-rwxr-xr-x | t/comp/use.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/comp/use.t b/t/comp/use.t index 8e9eb8b1a8..fa4dc18199 100755 --- a/t/comp/use.t +++ b/t/comp/use.t @@ -153,7 +153,7 @@ print "ok ",$i++,"\n"; print "ok ",$i++,"\n"; eval "use lib v100.105"; - unless ($@ =~ /lib v100\.105 required--this is only v35\.36/) { + unless ($@ =~ /lib version 100\.105 required--this is only version 35\.36/) { print "not "; } print "ok ",$i++,"\n"; @@ -163,7 +163,7 @@ print "ok ",$i++,"\n"; print "ok ",$i++,"\n"; eval "use lib 100.105"; - unless ($@ =~ /lib version 100\.105 required--this is only version 35\.036/) { + unless ($@ =~ /lib version 100\.105 required--this is only version 35\.36/) { print "not "; } print "ok ",$i++,"\n"; |