Skip to content

Commit af3ee05

Browse files
committed
Fix test
1 parent 0b967b7 commit af3ee05

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Zend/tests/partial_application/clone.phpt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,25 +26,25 @@ var_dump($clone(new C(9, 10)));
2626
--EXPECTF--
2727
object(C)#%d (2) {
2828
["a"]=>
29-
NULL
29+
int(1)
3030
["b"]=>
31-
NULL
31+
int(2)
3232
}
3333
object(C)#%d (2) {
3434
["a"]=>
35-
NULL
35+
int(3)
3636
["b"]=>
37-
NULL
37+
int(4)
3838
}
3939
object(C)#%d (2) {
4040
["a"]=>
41-
int(1)
41+
int(7)
4242
["b"]=>
43-
NULL
43+
int(6)
4444
}
4545
object(C)#%d (2) {
4646
["a"]=>
47-
int(1)
47+
int(8)
4848
["b"]=>
49-
NULL
49+
int(10)
5050
}

0 commit comments

Comments
 (0)