diff options
author | Adrian M. Enache <enache@rdslink.ro> | 2003-03-05 14:06:20 +0200 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-03-06 20:45:08 +0000 |
commit | 842517601b969821600597cc5736114bee3b0c27 (patch) | |
tree | 16a252ad5301ef7cd4422bca12280c0387913c5c /t/op/ver.t | |
parent | e69880a56d80785fbe5600b4e7dabf583188c526 (diff) | |
download | perl-842517601b969821600597cc5736114bee3b0c27.tar.gz |
cleaning up tests of the 'eval { decl. } <=> runtime decl.' assumption
Message-ID: <20030305100620.GA909@ratsnest.hole>
p4raw-id: //depot/perl@18840
Diffstat (limited to 't/op/ver.t')
-rwxr-xr-x | t/op/ver.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/op/ver.t b/t/op/ver.t index 5cf97a8b9b..acf6af7f35 100755 --- a/t/op/ver.t +++ b/t/op/ver.t @@ -13,7 +13,7 @@ use Config; require "test.pl"; plan( tests => 50 ); -eval { use v5.5.640; }; +eval 'use v5.5.640'; is( $@, '', "use v5.5.640; $@"); require_ok('v5.5.640'); @@ -52,7 +52,7 @@ is(v1.20.300.4000, "\x{1}\x{14}\x{12c}\x{fa0}",'compare embedded \x{} string'); # # now do the same without the "v" -eval { use 5.5.640; }; +eval 'use 5.5.640'; is( $@, '', "use 5.5.640; $@"); require_ok('5.5.640'); |