Skip to content

Commit

Permalink
Fix failing test.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Mar 7, 2014
1 parent 5b93532 commit 7e60cb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/TestCase/Network/Email/EmailTest.php
Expand Up @@ -1506,7 +1506,7 @@ public function testSendRenderWithImage() {
$server .= ':' . env('SERVER_PORT');
}

$expected = '<img src="http://' . $server . '/img/image.gif" alt="cool image" width="100" height="100" />';
$expected = '<img src="http://' . $server . '/img/image.gif" alt="cool image" width="100" height="100"';
$result = $this->CakeEmail->send();
$this->assertContains($expected, $result['message']);
}
Expand Down

0 comments on commit 7e60cb4

Please sign in to comment.