Add missing double quote to link in test

This commit is contained in:
Rob McVey 2015-01-02 15:09:40 +00:00
parent 1ebcd9bf72
commit 2bf41f3d85

View file

@ -148,7 +148,7 @@ class TextHelperTest extends CakeTestCase {
$this->assertEquals($expected, $result);
$text = 'This is a test text with URL (http://www.cakephp.org/page/4) in brackets';
$expected = 'This is a test text with URL (<a href="http://www.cakephp.org/page/4>http://www.cakephp.org/page/4</a>) in brackets';
$expected = 'This is a test text with URL (<a href="http://www.cakephp.org/page/4">http://www.cakephp.org/page/4</a>) in brackets';
$result = $this->Text->autoLink($text);
$this->assertEquals($expected, $result);