From 97313ac258914e4c26aefec912e8677d8436175e Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Fri, 21 Sep 2012 10:18:09 +0200 Subject: Fix test for html::quote() --- tests/Framework/Html.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'tests') diff --git a/tests/Framework/Html.php b/tests/Framework/Html.php index 8a27baca8..60284deef 100644 --- a/tests/Framework/Html.php +++ b/tests/Framework/Html.php @@ -31,7 +31,6 @@ class Framework_Html extends PHPUnit_Framework_TestCase array('>', '>'), array('&', '&'), array('&', '&'), - array('&', '&', true), ); } @@ -39,8 +38,8 @@ class Framework_Html extends PHPUnit_Framework_TestCase * Test for quote() * @dataProvider data_quote */ - function test_quote($str, $result, $validate = false) + function test_quote($str, $result) { - $this->assertEquals(html::quote($str, $validate), $result); + $this->assertEquals(html::quote($str), $result); } } -- cgit v1.2.3