Update of /cvsroot/http-webtest/HTTP-WebTest/lib/HTTP/WebTest/Plugin
In directory usw-pr-cvs1:/tmp/cvs-serv10851/lib/HTTP/WebTest/Plugin
Modified Files:
HarnessReport.pm
Log Message:
Fixed bug with reporting 'ok' for failed tests
Index: HarnessReport.pm
===================================================================
RCS file: /cvsroot/http-webtest/HTTP-WebTest/lib/HTTP/WebTest/Plugin/HarnessReport.pm,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** HarnessReport.pm 15 Feb 2002 13:12:55 -0000 1.3
--- HarnessReport.pm 8 Apr 2002 06:50:26 -0000 1.4
***************
*** 79,83 ****
my $comment = $subresult->comment;
my $ok = $subresult->ok ? 'SUCCEED' : 'FAIL';
! $all_ok &&= $ok;
$self->print("# $comment: $ok\n");
--- 79,83 ----
my $comment = $subresult->comment;
my $ok = $subresult->ok ? 'SUCCEED' : 'FAIL';
! $all_ok &&= $subresult->ok;
$self->print("# $comment: $ok\n");
|