From b895690dfacfcc888ff3d652d9997557154ddf0a Mon Sep 17 00:00:00 2001 From: Gabriel Caruso Date: Tue, 20 Feb 2018 18:59:13 -0300 Subject: remove support for string|unicode in tests --- ext/spl/tests/SplDoublylinkedlist_offsetunset_first.phpt | 4 ++-- ext/spl/tests/SplDoublylinkedlist_offsetunset_last.phpt | 4 ++-- ext/spl/tests/SplFixedArray_fromarray_indexes.phpt | 2 +- ext/spl/tests/SplFixedArray_fromarray_non_indexes.phpt | 2 +- ext/spl/tests/SplFixedArray_fromarray_param_multiarray.phpt | 2 +- ext/spl/tests/SplFixedArray_offsetUnset_string.phpt | 8 ++++---- ext/spl/tests/SplFixedArray_setsize_001.phpt | 4 ++-- 7 files changed, 13 insertions(+), 13 deletions(-) (limited to 'ext/spl/tests') diff --git a/ext/spl/tests/SplDoublylinkedlist_offsetunset_first.phpt b/ext/spl/tests/SplDoublylinkedlist_offsetunset_first.phpt index 3e09df8487..7d8aa7e621 100644 --- a/ext/spl/tests/SplDoublylinkedlist_offsetunset_first.phpt +++ b/ext/spl/tests/SplDoublylinkedlist_offsetunset_first.phpt @@ -18,8 +18,8 @@ object(SplDoublyLinkedList)#1 (2) { ["dllist":"SplDoublyLinkedList":private]=> array(2) { [0]=> - %string|unicode%(3) "hai" + string(3) "hai" [1]=> - %string|unicode%(4) "thar" + string(4) "thar" } } diff --git a/ext/spl/tests/SplDoublylinkedlist_offsetunset_last.phpt b/ext/spl/tests/SplDoublylinkedlist_offsetunset_last.phpt index a3482b319b..ac3cade344 100644 --- a/ext/spl/tests/SplDoublylinkedlist_offsetunset_last.phpt +++ b/ext/spl/tests/SplDoublylinkedlist_offsetunset_last.phpt @@ -18,8 +18,8 @@ object(SplDoublyLinkedList)#1 (2) { ["dllist":"SplDoublyLinkedList":private]=> array(2) { [0]=> - %string|unicode%(2) "oh" + string(2) "oh" [1]=> - %string|unicode%(3) "hai" + string(3) "hai" } } diff --git a/ext/spl/tests/SplFixedArray_fromarray_indexes.phpt b/ext/spl/tests/SplFixedArray_fromarray_indexes.phpt index 034d457318..a511c63ad8 100644 --- a/ext/spl/tests/SplFixedArray_fromarray_indexes.phpt +++ b/ext/spl/tests/SplFixedArray_fromarray_indexes.phpt @@ -16,7 +16,7 @@ object(SplFixedArray)#1 (4) { [1]=> int(1) [2]=> - %string|unicode%(1) "2" + string(1) "2" [3]=> bool(false) } diff --git a/ext/spl/tests/SplFixedArray_fromarray_non_indexes.phpt b/ext/spl/tests/SplFixedArray_fromarray_non_indexes.phpt index ecae2ab762..79f74cd5e7 100644 --- a/ext/spl/tests/SplFixedArray_fromarray_non_indexes.phpt +++ b/ext/spl/tests/SplFixedArray_fromarray_non_indexes.phpt @@ -15,7 +15,7 @@ object(SplFixedArray)#1 (3) { [0]=> int(1) [1]=> - %string|unicode%(1) "2" + string(1) "2" [2]=> bool(false) } diff --git a/ext/spl/tests/SplFixedArray_fromarray_param_multiarray.phpt b/ext/spl/tests/SplFixedArray_fromarray_param_multiarray.phpt index 659f61c80d..b669563db4 100644 --- a/ext/spl/tests/SplFixedArray_fromarray_param_multiarray.phpt +++ b/ext/spl/tests/SplFixedArray_fromarray_param_multiarray.phpt @@ -12,6 +12,6 @@ object(SplFixedArray)#1 (1) { [0]=> array(1) { [0]=> - %string|unicode%(1) "1" + string(1) "1" } } diff --git a/ext/spl/tests/SplFixedArray_offsetUnset_string.phpt b/ext/spl/tests/SplFixedArray_offsetUnset_string.phpt index 21976b552c..f422eef264 100644 --- a/ext/spl/tests/SplFixedArray_offsetUnset_string.phpt +++ b/ext/spl/tests/SplFixedArray_offsetUnset_string.phpt @@ -21,13 +21,13 @@ PHPNW Testfest 2009 - Paul Court ( g@rgoyle.com ) --EXPECTF-- object(SplFixedArray)#1 (5) { [0]=> - %string|unicode%(14) "PHPNW Testfest" + string(14) "PHPNW Testfest" [1]=> - %string|unicode%(14) "PHPNW Testfest" + string(14) "PHPNW Testfest" [2]=> - %string|unicode%(14) "PHPNW Testfest" + string(14) "PHPNW Testfest" [3]=> - %string|unicode%(14) "PHPNW Testfest" + string(14) "PHPNW Testfest" [4]=> NULL } diff --git a/ext/spl/tests/SplFixedArray_setsize_001.phpt b/ext/spl/tests/SplFixedArray_setsize_001.phpt index 925912ceba..d9c1469ee2 100644 --- a/ext/spl/tests/SplFixedArray_setsize_001.phpt +++ b/ext/spl/tests/SplFixedArray_setsize_001.phpt @@ -16,7 +16,7 @@ var_dump($array); --EXPECTF-- object(SplFixedArray)#1 (2) { [0]=> - %string|unicode%(3) "one" + string(3) "one" [1]=> - %string|unicode%(3) "two" + string(3) "two" } -- cgit v1.2.1