diff options
author | Jose <jose@zeroc.com> | 2016-03-16 09:45:41 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2016-03-16 09:45:41 +0100 |
commit | 0b9cd62bff1b6c72f9e8be6c4f2b496b3fed6aac (patch) | |
tree | b8a501ace201b98d9808544c9de54b1f853c7efe /php/test | |
parent | Fix for ICE-7020 - php tests will now exit with exit status = 1 if there's a ... (diff) | |
download | ice-0b9cd62bff1b6c72f9e8be6c4f2b496b3fed6aac.tar.bz2 ice-0b9cd62bff1b6c72f9e8be6c4f2b496b3fed6aac.tar.xz ice-0b9cd62bff1b6c72f9e8be6c4f2b496b3fed6aac.zip |
ICE-7020 - php Ice/defaultValue failing
Diffstat (limited to 'php/test')
-rw-r--r-- | php/test/Ice/defaultValue/Client.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/php/test/Ice/defaultValue/Client.php b/php/test/Ice/defaultValue/Client.php index 29fa33a2c6c..2fcc596ce0f 100644 --- a/php/test/Ice/defaultValue/Client.php +++ b/php/test/Ice/defaultValue/Client.php @@ -55,7 +55,7 @@ function allTests() test($v->l == 4); test($v->f == 5.1); test($v->d == 6.2); - test($v->str == "foo \\ \"bar\n \r\n\t\013\f\007\b? \007 \007"); + test($v->str == "foo \\ \"bar\n \r\n\t\013\f\007\010? \007 \007"); test($v->c1 == $red); test($v->c2 == $green); test($v->c3 == $blue); @@ -105,7 +105,7 @@ function allTests() test($v->l == 4); test($v->f == 5.1); test($v->d == 6.2); - test($v->str == "foo \\ \"bar\n \r\n\t\013\f\007\b? \007 \007"); + test($v->str == "foo \\ \"bar\n \r\n\t\013\f\007\010? \007 \007"); test(strlen($v->noDefault) == 0); test($v->zeroI == 0); test($v->zeroL == 0); @@ -125,7 +125,7 @@ function allTests() test($v->l == 4); test($v->f == 5.1); test($v->d == 6.2); - test($v->str == "foo \\ \"bar\n \r\n\t\013\f\007\b? \007 \007"); + test($v->str == "foo \\ \"bar\n \r\n\t\013\f\007\010? \007 \007"); test(strlen($v->noDefault) == 0); test($v->c1 == $red); test($v->c2 == $green); @@ -151,7 +151,7 @@ function allTests() test($v->l == 4); test($v->f == 5.1); test($v->d == 6.2); - test($v->str == "foo \\ \"bar\n \r\n\t\013\f\007\b? \007 \007"); + test($v->str == "foo \\ \"bar\n \r\n\t\013\f\007\010? \007 \007"); test(strlen($v->noDefault) == 0); test($v->zeroI == 0); test($v->zeroL == 0); @@ -171,7 +171,7 @@ function allTests() test($v->l == 4); test($v->f == 5.1); test($v->d == 6.2); - test($v->str == "foo \\ \"bar\n \r\n\t\013\f\007\b? \007 \007"); + test($v->str == "foo \\ \"bar\n \r\n\t\013\f\007\010? \007 \007"); test(strlen($v->noDefault) == 0); test($v->c1 == $red); test($v->c2 == $green); |