Browse Source

Fix failing test.

mark_story 12 years ago
parent
commit
7e60cb490a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase/Network/Email/EmailTest.php

+ 1 - 1
tests/TestCase/Network/Email/EmailTest.php

@@ -1506,7 +1506,7 @@ class EmailTest extends TestCase {
 			$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']);
 	}