From a95f600e761e6eb36eb144a038a5b0d9fa3211a8 Mon Sep 17 00:00:00 2001 From: "Edward Z. Yang" Date: Sat, 26 Apr 2008 03:18:07 +0000 Subject: [PATCH] Fix another fatal error from SimpleTest refactoring. git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1696 48356398-32a2-884e-a903-53898d9a118a --- tests/HTMLPurifier/ErrorCollectorEMock.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/HTMLPurifier/ErrorCollectorEMock.php b/tests/HTMLPurifier/ErrorCollectorEMock.php index a2c89837..a72b1f1a 100644 --- a/tests/HTMLPurifier/ErrorCollectorEMock.php +++ b/tests/HTMLPurifier/ErrorCollectorEMock.php @@ -46,7 +46,7 @@ class HTMLPurifier_ErrorCollectorEMock extends HTMLPurifier_ErrorCollectorMock } // boilerplate mock code, does not have return value or references $args = func_get_args(); - $mock->_invoke('send', $args); + $mock->invoke('send', $args); } }