Re: problem with a test exemple on the Phalanx web site

2003-10-04 Thread Andy Lester
At 1:01 PM -0400 10/4/03, Dominic Letarte wrote: on the page : http://qa.perl.org/phalanx/kwalitee.html ok( unlink $filename, "Remove $filename" ); should be written: ok( unlink( $filename), "Remove $filename" ); unless you want Perl to take "Remove $filename" as an arg for unlink and not for o

problem with a test exemple on the Phalanx web site

2003-10-04 Thread Dominic Letarte
on the page : http://qa.perl.org/phalanx/kwalitee.html ok( unlink $filename, "Remove $filename" ); should be written: ok( unlink( $filename), "Remove $filename" ); unless you want Perl to take "Remove $filename" as an arg for unlink and not for ok. Dominic