Skip to content

Commit

Permalink
Tidy up format of test messages
Browse files Browse the repository at this point in the history
  • Loading branch information
Synchro committed Mar 17, 2015
1 parent c8be949 commit 3bdaa17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/phpmailerTest.php
Expand Up @@ -192,7 +192,7 @@ public function buildBody()
$ReportBody .= $list_start;
for ($i = 0; $i < count($this->ChangeLog); $i++) {
$ReportBody .= $bullet_start . $this->ChangeLog[$i][0] . ' was changed to [' .
$this->ChangeLog[$i][1] . ']' . $eol;
$this->ChangeLog[$i][1] . ']' . $bullet_end;
}
$ReportBody .= $list_end . $eol . $eol;
}
Expand All @@ -204,7 +204,7 @@ public function buildBody()

$ReportBody .= $list_start;
for ($i = 0; $i < count($this->NoteLog); $i++) {
$ReportBody .= $bullet_start . $this->NoteLog[$i] . $eol;
$ReportBody .= $bullet_start . $this->NoteLog[$i] . $bullet_end;
}
$ReportBody .= $list_end;
}
Expand Down

0 comments on commit 3bdaa17

Please sign in to comment.