remove debug statement

This commit is contained in:
euromark 2012-08-02 10:18:14 +02:00
parent 57bf15a415
commit 64ba8c6b6e

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);
}