diff options
author | Nikita Popov <nikic@php.net> | 2016-11-22 22:12:07 +0100 |
---|---|---|
committer | Nikita Popov <nikic@php.net> | 2016-11-24 22:39:39 +0100 |
commit | 5af586bec52564e05d8c75ec533e132a9f06e749 (patch) | |
tree | cada51fab29d89f724338cdc2ed626ccbee1327d /tests/lang | |
parent | 895a82695c148f15df1ff6ab2aa9f55f9b3725ad (diff) | |
download | php-git-5af586bec52564e05d8c75ec533e132a9f06e749.tar.gz |
Remove more PHP 6 leftovers from tests
Diffstat (limited to 'tests/lang')
-rw-r--r-- | tests/lang/engine_assignExecutionOrder_001.phpt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/lang/engine_assignExecutionOrder_001.phpt b/tests/lang/engine_assignExecutionOrder_001.phpt index 1b85cb7e6c..f4d2bbfee9 100644 --- a/tests/lang/engine_assignExecutionOrder_001.phpt +++ b/tests/lang/engine_assignExecutionOrder_001.phpt @@ -84,7 +84,7 @@ Order with array assignment: in f() in g() array(1) { - [%u|b%"name"]=> + ["name"]=> %string|unicode%(14) "assigned value" } @@ -93,7 +93,7 @@ Order with object property assignment: in f() in g() object(stdClass)#%d (1) { - [%u|b%"assigned value"]=> + ["assigned value"]=> %string|unicode%(14) "assigned value" } @@ -102,11 +102,11 @@ Order with nested object property assignment: in f() in g() object(stdClass)#%d (1) { - [%u|b%"o1"]=> + ["o1"]=> object(stdClass)#%d (1) { - [%u|b%"o2"]=> + ["o2"]=> object(stdClass)#%d (1) { - [%u|b%"assigned value"]=> + ["assigned value"]=> %string|unicode%(14) "assigned value" } } @@ -117,9 +117,9 @@ Order with dim_list property assignment: in f() in g() object(stdClass)#%d (1) { - [%u|b%"a"]=> + ["a"]=> array(1) { - [%u|b%"assigned value"]=> + ["assigned value"]=> %string|unicode%(14) "assigned value" } } @@ -135,7 +135,7 @@ Order with static array property assignment: in f() in g() array(1) { - [%u|b%"name"]=> + ["name"]=> %string|unicode%(14) "assigned value" } |