summaryrefslogtreecommitdiff
path: root/_test/lib
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2008-05-04 20:31:11 +0200
committerAndreas Gohr <andi@splitbrain.org>2008-05-04 20:31:11 +0200
commit432075751827605a08d616a0af1d8d590cf58c16 (patch)
tree5da9f9e61eff100eda28edaf849d331095fbcbae /_test/lib
parenteb947fb38dd663df30e79a20a0b885e26a03ca28 (diff)
downloadrpg-432075751827605a08d616a0af1d8d590cf58c16.tar.gz
rpg-432075751827605a08d616a0af1d8d590cf58c16.tar.bz2
Call-time pass-by-reference problem in test suite fixed
darcs-hash:20080504183111-7ad00-f2d6514f010dc907dbe0488c06d11b775cc04dac.gz
Diffstat (limited to '_test/lib')
-rw-r--r--_test/lib/mock_functions.php2
1 files changed, 1 insertions, 1 deletions
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);
}
/**