diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2015-03-06 13:42:13 -0330 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2015-03-06 13:42:13 -0330 |
commit | 1790b5263d548689573e8c2d6ecff4f2033584ed (patch) | |
tree | baac3b9187d1b25aeed4daaa4aa8f99a58800f6d /php/test | |
parent | Add missing files for JS number test (diff) | |
download | ice-1790b5263d548689573e8c2d6ecff4f2033584ed.tar.bz2 ice-1790b5263d548689573e8c2d6ecff4f2033584ed.tar.xz ice-1790b5263d548689573e8c2d6ecff4f2033584ed.zip |
Fixed php operations test on Windows
Diffstat (limited to 'php/test')
-rw-r--r-- | php/test/Ice/operations/Client.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/php/test/Ice/operations/Client.php b/php/test/Ice/operations/Client.php index f5579a24a37..e775a01e7ab 100644 --- a/php/test/Ice/operations/Client.php +++ b/php/test/Ice/operations/Client.php @@ -923,7 +923,7 @@ function twoways($communicator, $p) test($p->opByte1(0xFF) == 0xFF); test($p->opShort1(0x7FFF) == 0x7FFF); test($p->opInt1(0x7FFFFFFF) == 0x7FFFFFFF); - test($p->opLong1(0x7FFFFFFFFFFFFFFF) == 0x7FFFFFFFFFFFFFFF); + test($p->opLong1($LONG_MAX) == $LONG_MAX); test($p->opFloat1(1.0) == 1.0); test($p->opDouble1(1.0) == 1.0); test($p->opString1("opString1") == "opString1"); |