From: Abhijit Menon-Sen Date: Sat, 22 Sep 2001 10:02:34 +0000 (+0000) Subject: Removed duplicated tests #19 and #20. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=83240b2c29db6229dacef05064a026a4843b3e11;p=p5sagit%2Fp5-mst-13.2.git Removed duplicated tests #19 and #20. p4raw-id: //depot/perl@12126 --- diff --git a/t/op/do.t b/t/op/do.t index 1d6fb90..913481f 100755 --- a/t/op/do.t +++ b/t/op/do.t @@ -87,14 +87,6 @@ ok( !$@ ); eval qq{ do uc qq(a file that does not exist); }; ok( !$@ ); -eval qq{ do qq(a file that does not exist); }; -print "not " if $@; -print "ok 19\n"; - -eval qq{ do uc qq(a file that does not exist); }; -print "not " if $@; -print "ok 20\n"; - END { 1 while unlink("$$.16", "$$.17", "$$.18"); }