Skip to content

Commit

Permalink
One more EXPECTF-related change
Browse files Browse the repository at this point in the history
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
  • Loading branch information
kocsismate committed May 6, 2024
1 parent e869186 commit e4c52e6
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions ext/soap/tests/any.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,14 @@ $ret = $client->echoAnyElement(
var_dump($g);
var_dump($ret);
?>
--EXPECT--
object(stdClass)#5 (1) {
--EXPECTF--
object(stdClass)#%d (%d) {
["inputAny"]=>
object(stdClass)#6 (1) {
object(stdClass)#%d (%d) {
["any"]=>
array(1) {
["SOAPComplexType"]=>
object(SOAPComplexType)#7 (3) {
object(SOAPComplexType)#%d (%d) {
["varString"]=>
string(3) "arg"
["varInt"]=>
Expand All @@ -71,13 +71,13 @@ object(stdClass)#5 (1) {
}
}
}
object(stdClass)#8 (1) {
object(stdClass)#%d (%d) {
["return"]=>
object(stdClass)#9 (1) {
object(stdClass)#%d (%d) {
["any"]=>
array(1) {
["SOAPComplexType"]=>
object(SOAPComplexType)#10 (3) {
object(SOAPComplexType)#%d (%d) {
["varString"]=>
string(3) "arg"
["varInt"]=>
Expand Down

0 comments on commit e4c52e6

Please sign in to comment.