Skip to content

Commit

Permalink
Add missing double quote to link in test
Browse files Browse the repository at this point in the history
  • Loading branch information
robmcvey committed Jan 2, 2015
1 parent 1ebcd9b commit 2bf41f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/Test/Case/View/Helper/TextHelperTest.php
Expand Up @@ -148,7 +148,7 @@ public function testAutoLink() {
$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);

Expand Down

0 comments on commit 2bf41f3

Please sign in to comment.