Merge pull request #751 from dereuromark/2.3-tel-protocol

remove debug statement
This commit is contained in:
José Lorenzo Rodríguez 2012-08-02 01:27:45 -07:00
commit 22c1ac9622

View file

@ -359,7 +359,6 @@ class HtmlHelperTest extends CakeTestCase {
$this->assertTags($result, $expected);
$result = $this->Html->link('say hello to 0123465-798', 'sms:0123465-798?body=hello "cakephp"');
debug($result);
$expected = array('a' => array('href' => 'sms:0123465-798?body=hello "cakephp"'), 'say hello to 0123465-798', '/a');
$this->assertTags($result, $expected);
}