From 81271854e899ca888dbd538d4cfaf90ed5af9c4e Mon Sep 17 00:00:00 2001 From: Xinchen Hui Date: Sun, 2 Mar 2014 21:38:00 +0800 Subject: [PATCH] Fixed test --- ext/reflection/tests/ReflectionClass_getInterfaces_003.phpt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ext/reflection/tests/ReflectionClass_getInterfaces_003.phpt b/ext/reflection/tests/ReflectionClass_getInterfaces_003.phpt index bfe4835499..f1cac44e95 100644 --- a/ext/reflection/tests/ReflectionClass_getInterfaces_003.phpt +++ b/ext/reflection/tests/ReflectionClass_getInterfaces_003.phpt @@ -34,13 +34,13 @@ var_dump($a); An object is in an array and is referenced. As expected, var_dumping the array shows '&': array(1) { [0]=> - object(stdClass)#%d (0) { + &object(stdClass)#%d (0) { } } Naturally, this remains true if we modify the object: array(1) { [0]=> - object(stdClass)#%d (1) { + &object(stdClass)#%d (1) { ["x"]=> int(1) } @@ -66,4 +66,4 @@ array(1) { ["x"]=> int(1) } -} \ No newline at end of file +} -- 2.50.1