Skip to content

Commit

Permalink
fixed table printing bug in HtmlFormatter
Browse files Browse the repository at this point in the history
  • Loading branch information
everzet committed Apr 5, 2011
1 parent e6201a3 commit 143f52b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Behat/Behat/Formatter/HtmlFormatter.php
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ protected function printColorizedTableRow($row, $color)
$this->writeln('<tr class="' . $color . '">');

foreach ($row as $column) {
$this->writeln('<td>' . $row . '</td>');
$this->writeln('<td>' . $column . '</td>');
}

$this->writeln('</tr>');
Expand Down

0 comments on commit 143f52b

Please sign in to comment.