Skip to content

Commit

Permalink
Item9003: commenting out the parse call will definitily make the test…
Browse files Browse the repository at this point in the history
…s pass

git-svn-id: http://svn.foswiki.org/trunk@7372 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
SvenDowideit authored and SvenDowideit committed May 11, 2010
1 parent ba6733e commit 7b90876
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions UnitTestContrib/test/unit/HTMLValidationTests.pm
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ sub set_up {
$this->{tidy} = HTML::Tidy->new({
#turn off warnings until we have fixed errors
'show-warnings' => 1,
'accessibility-check' => 0,
#'accessibility-check' => 1,
'drop-empty-paras' => 0
});
print STDERR "HTML::Tidy Version: ".$HTML::Tidy::VERSION."\n";
Expand Down Expand Up @@ -126,7 +126,7 @@ sub verify_switchboard_function {
# $this->assert_equals('', $header);
# $this->assert_equals('', $text);

#$this->assert($this->{tidy}->parse('something', $text));
$this->{tidy}->parse('something', $text);
$this->assert_null($this->{tidy}->messages());
my $output = join("\n", $this->{tidy}->messages());
$this->assert_equals('', $output);
Expand Down

0 comments on commit 7b90876

Please sign in to comment.