diff options
author | Andreas Gohr <andi@splitbrain.org> | 2008-05-04 20:31:11 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2008-05-04 20:31:11 +0200 |
commit | 432075751827605a08d616a0af1d8d590cf58c16 (patch) | |
tree | 5da9f9e61eff100eda28edaf849d331095fbcbae | |
parent | eb947fb38dd663df30e79a20a0b885e26a03ca28 (diff) | |
download | rpg-432075751827605a08d616a0af1d8d590cf58c16.tar.gz rpg-432075751827605a08d616a0af1d8d590cf58c16.tar.bz2 |
Call-time pass-by-reference problem in test suite fixed
darcs-hash:20080504183111-7ad00-f2d6514f010dc907dbe0488c06d11b775cc04dac.gz
-rw-r--r-- | _test/lib/mock_functions.php | 2 |
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); } /** |