Skip to content

Commit e4c52e6

Browse files
committed
One more EXPECTF-related change
These cause test failures when we migrate resources to objects. But anyway, hardcoding the object IDs and the number of properties is hardly ever useful, so it's fine to get rid of them. Related to #14121
1 parent e869186 commit e4c52e6

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

ext/soap/tests/any.phpt

+7-7
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,14 @@ $ret = $client->echoAnyElement(
5353
var_dump($g);
5454
var_dump($ret);
5555
?>
56-
--EXPECT--
57-
object(stdClass)#5 (1) {
56+
--EXPECTF--
57+
object(stdClass)#%d (%d) {
5858
["inputAny"]=>
59-
object(stdClass)#6 (1) {
59+
object(stdClass)#%d (%d) {
6060
["any"]=>
6161
array(1) {
6262
["SOAPComplexType"]=>
63-
object(SOAPComplexType)#7 (3) {
63+
object(SOAPComplexType)#%d (%d) {
6464
["varString"]=>
6565
string(3) "arg"
6666
["varInt"]=>
@@ -71,13 +71,13 @@ object(stdClass)#5 (1) {
7171
}
7272
}
7373
}
74-
object(stdClass)#8 (1) {
74+
object(stdClass)#%d (%d) {
7575
["return"]=>
76-
object(stdClass)#9 (1) {
76+
object(stdClass)#%d (%d) {
7777
["any"]=>
7878
array(1) {
7979
["SOAPComplexType"]=>
80-
object(SOAPComplexType)#10 (3) {
80+
object(SOAPComplexType)#%d (%d) {
8181
["varString"]=>
8282
string(3) "arg"
8383
["varInt"]=>

0 commit comments

Comments
 (0)