Thomas Bruederli
2012-09-23 0c144b98a417d50b9c073ae3931fdad47390f1f7
tests/Framework/Html.php
@@ -31,7 +31,6 @@
            array('>', '>'),
            array('&', '&'),
            array('&', '&'),
            array('&', '&', true),
        );
    }
@@ -39,8 +38,8 @@
     * 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);
    }
}