From 64ba8c6b6e4241994ec36bb476a967a579238789 Mon Sep 17 00:00:00 2001 From: euromark Date: Thu, 2 Aug 2012 10:18:14 +0200 Subject: [PATCH] remove debug statement --- lib/Cake/Test/Case/View/Helper/HtmlHelperTest.php | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/Cake/Test/Case/View/Helper/HtmlHelperTest.php b/lib/Cake/Test/Case/View/Helper/HtmlHelperTest.php index 4b54764a2..fd4cb0a77 100644 --- a/lib/Cake/Test/Case/View/Helper/HtmlHelperTest.php +++ b/lib/Cake/Test/Case/View/Helper/HtmlHelperTest.php @@ -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); }