summaryrefslogtreecommitdiff
path: root/php/test
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2015-03-06 05:07:03 -0800
committerDwayne Boone <dwayne@zeroc.com>2015-03-06 05:07:03 -0800
commitb1107fd4b18b4a20ae0f198c44da62794beef8d0 (patch)
tree7598b4c5fc6b8a4760882c824ed6986820086fd9 /php/test
parentICE-6356 java info test failure (diff)
downloadice-b1107fd4b18b4a20ae0f198c44da62794beef8d0.tar.bz2
ice-b1107fd4b18b4a20ae0f198c44da62794beef8d0.tar.xz
ice-b1107fd4b18b4a20ae0f198c44da62794beef8d0.zip
ICE-6356 fixed info test (missed php in last commit)
Diffstat (limited to 'php/test')
-rw-r--r--php/test/Ice/info/Client.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/php/test/Ice/info/Client.php b/php/test/Ice/info/Client.php
index 23e296acdba..39c526099ff 100644
--- a/php/test/Ice/info/Client.php
+++ b/php/test/Ice/info/Client.php
@@ -134,8 +134,8 @@ function allTests($communicator)
test($info->remoteAddress == $defaultHost);
test($info->localAddress == $defaultHost);
}
- test($info->rcvSize == 1024);
- test($info->sndSize == 2048);
+ test($info->rcvSize >= 1024);
+ test($info->sndSize >= 2048);
$ctx = $testIntf->getConnectionInfoAsContext();
test($ctx["incoming"] == "true");