From: Philip Newton Date: Thu, 31 May 2001 19:44:05 +0000 (+0200) Subject: Re: [PATCH] Tests for File::Compare X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c96098b89ac79c6fafa7880332886ecaf567c0b4;p=p5sagit%2Fp5-mst-13.2.git Re: [PATCH] Tests for File::Compare Message-Id: <200105311748.f4VHmCt18269@chaos.wustl.edu> Unnecessary "quotation marks". p4raw-id: //depot/perl@10366 --- diff --git a/t/lib/filecomp.t b/t/lib/filecomp.t index 9e0751b..167a46a 100644 --- a/t/lib/filecomp.t +++ b/t/lib/filecomp.t @@ -88,8 +88,8 @@ eval { close($fh); } seek($tfh,0,0); - $donetests[0] = compare($tfh,'README'); - $donetests[1] = compare("$filename",'README'); + $donetests[0] = compare($tfh, 'README'); + $donetests[1] = compare($filename, 'README'); unlink0($tfh,$filename); }; print "# problems when testing with a tempory file\n" if $@;