From 432075751827605a08d616a0af1d8d590cf58c16 Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Sun, 4 May 2008 20:31:11 +0200 Subject: Call-time pass-by-reference problem in test suite fixed darcs-hash:20080504183111-7ad00-f2d6514f010dc907dbe0488c06d11b775cc04dac.gz --- _test/lib/mock_functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_test/lib/mock_functions.php b/_test/lib/mock_functions.php index 5ffed24d6..9ef5b7b8f 100644 --- a/_test/lib/mock_functions.php +++ b/_test/lib/mock_functions.php @@ -190,7 +190,7 @@ */ function setReturnReferenceAt($timing, $function, &$reference, $args = false) { $mock = & MockFunction::_instance($function); - $mock->setReturnReferenceAt($timing, $function, &$reference, $args); + $mock->setReturnReferenceAt($timing, $function, $reference, $args); } /** -- cgit v1.2.3