From 17ccbeec3242b80f84fbf6b3acd58421ef003b02 Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Sun, 14 Oct 2018 17:23:43 +0200 Subject: Trim trailing whitespace in *.phpt --- ext/iconv/tests/bug37176.phpt | 4 +-- ext/iconv/tests/bug37773.phpt | 4 +-- ext/iconv/tests/bug52211.phpt | 2 +- ext/iconv/tests/eucjp2utf8.phpt | 2 +- ext/iconv/tests/iconv002.phpt | 2 +- ext/iconv/tests/iconv003.phpt | 2 +- ext/iconv/tests/iconv_basic.phpt | 4 +-- ext/iconv/tests/iconv_encoding_basic.phpt | 4 +-- ext/iconv/tests/iconv_get_encoding_error.phpt | 8 +++--- .../iconv_mime_decode_headers_variation1.phpt | 4 +-- .../iconv_mime_decode_headers_variation2.phpt | 4 +-- .../iconv_mime_decode_headers_variation3.phpt | 4 +-- ext/iconv/tests/iconv_mime_decode_variation1.phpt | 4 +-- ext/iconv/tests/iconv_mime_decode_variation2.phpt | 4 +-- ext/iconv/tests/iconv_mime_decode_variation3.phpt | 4 +-- ext/iconv/tests/iconv_set_encoding_error.phpt | 6 ++--- ext/iconv/tests/iconv_set_encoding_variation.phpt | 6 ++--- ext/iconv/tests/iconv_strlen_basic.phpt | 2 +- ext/iconv/tests/iconv_strlen_error1.phpt | 2 +- ext/iconv/tests/iconv_strlen_error2.phpt | 2 +- ext/iconv/tests/iconv_strlen_variation1.phpt | 30 +++++++++++----------- ext/iconv/tests/iconv_strlen_variation2.phpt | 6 ++--- ext/iconv/tests/iconv_strpos_basic.phpt | 2 +- ext/iconv/tests/iconv_strpos_error1.phpt | 2 +- ext/iconv/tests/iconv_strpos_error2.phpt | 2 +- ext/iconv/tests/iconv_strpos_variation1.phpt | 6 ++--- ext/iconv/tests/iconv_strpos_variation2.phpt | 6 ++--- ext/iconv/tests/iconv_strpos_variation3.phpt | 6 ++--- ext/iconv/tests/iconv_strpos_variation3_64bit.phpt | 6 ++--- ext/iconv/tests/iconv_strpos_variation4.phpt | 6 ++--- ext/iconv/tests/iconv_strpos_variation5.phpt | 4 +-- ext/iconv/tests/iconv_strrpos_basic.phpt | 2 +- ext/iconv/tests/iconv_strrpos_error1.phpt | 2 +- ext/iconv/tests/iconv_strrpos_error2.phpt | 2 +- ext/iconv/tests/iconv_strrpos_variation1.phpt | 6 ++--- ext/iconv/tests/iconv_strrpos_variation2.phpt | 6 ++--- ext/iconv/tests/iconv_strrpos_variation3.phpt | 6 ++--- ext/iconv/tests/iconv_substr_basic.phpt | 4 +-- ext/iconv/tests/iconv_substr_error1.phpt | 2 +- ext/iconv/tests/iconv_substr_error2.phpt | 2 +- ext/iconv/tests/translit-failure.phpt | 2 +- ext/iconv/tests/translit-utf8.phpt | 2 +- 42 files changed, 93 insertions(+), 93 deletions(-) (limited to 'ext/iconv') diff --git a/ext/iconv/tests/bug37176.phpt b/ext/iconv/tests/bug37176.phpt index 70242fe091..c562ceac85 100644 --- a/ext/iconv/tests/bug37176.phpt +++ b/ext/iconv/tests/bug37176.phpt @@ -1,8 +1,8 @@ --TEST-- Bug #37176 (iconv_strpos() fails to find a string) --SKIPIF-- - --FILE-- diff --git a/ext/iconv/tests/eucjp2utf8.phpt b/ext/iconv/tests/eucjp2utf8.phpt index 4ffcfef516..38cfdd37b8 100644 --- a/ext/iconv/tests/eucjp2utf8.phpt +++ b/ext/iconv/tests/eucjp2utf8.phpt @@ -48,7 +48,7 @@ $str = " 日本語テキストとEnglish Text "; -$str = iconv("EUC-JP", "UTF-8", $str); /* libiconv(1.8) doesn't know "UTF8" but "UTF-8". */ +$str = iconv("EUC-JP", "UTF-8", $str); /* libiconv(1.8) doesn't know "UTF8" but "UTF-8". */ $str = base64_encode($str); echo $str."\n"; diff --git a/ext/iconv/tests/iconv002.phpt b/ext/iconv/tests/iconv002.phpt index 034b3761fa..d49e5eccc2 100644 --- a/ext/iconv/tests/iconv002.phpt +++ b/ext/iconv/tests/iconv002.phpt @@ -4,7 +4,7 @@ iconv() test 2 (UCS4BE to ASCII) --INI-- diff --git a/ext/iconv/tests/iconv003.phpt b/ext/iconv/tests/iconv003.phpt index 9642cf1e79..690c1569f9 100644 --- a/ext/iconv/tests/iconv003.phpt +++ b/ext/iconv/tests/iconv003.phpt @@ -4,7 +4,7 @@ iconv() test 3 --FILE-- 0, 'int 1' => 1, 'int 12345' => 12345, 'int -12345' => -12345, // float data -/*5*/ +/*5*/ 'float 10.5' => 10.5, 'float -10.5' => -10.5, 'float 12.3456789000e10' => 12.3456789000e10, @@ -60,39 +60,39 @@ $inputs = array( 'float .5' => .5, // null data -/*10*/ +/*10*/ 'uppercase NULL' => NULL, 'lowercase null' => null, - + // boolean data -/*12*/ +/*12*/ 'lowercase true' => true, 'lowercase false' =>false, 'uppercase TRUE' =>TRUE, 'uppercase FALSE' =>FALSE, - + // empty data -/*16*/ +/*16*/ 'empty string DQ' => "", 'empty string SQ' => '', - + // string data -/*18*/ +/*18*/ 'string DQ' => "string", 'string SQ' => 'string', 'mixed case string' => "sTrInG", 'heredoc' => $heredoc, - + // object data -/*21*/ +/*21*/ 'instance of class' => new classA(), - + // undefined data -/*22*/ +/*22*/ 'undefined var' => @$undefined_var, // unset data -/*23*/ +/*23*/ 'unset var' => @$unset_var, // resource variable diff --git a/ext/iconv/tests/iconv_strlen_variation2.phpt b/ext/iconv/tests/iconv_strlen_variation2.phpt index 85dd0483a6..be5afdc93b 100644 --- a/ext/iconv/tests/iconv_strlen_variation2.phpt +++ b/ext/iconv/tests/iconv_strlen_variation2.phpt @@ -8,7 +8,7 @@ function_exists('iconv_strlen') or die("skip iconv_strlen() is not available in --FILE-- --INI-- error_reporting=2039 diff --git a/ext/iconv/tests/translit-utf8.phpt b/ext/iconv/tests/translit-utf8.phpt index 0151dc385c..c363eeeab6 100644 --- a/ext/iconv/tests/translit-utf8.phpt +++ b/ext/iconv/tests/translit-utf8.phpt @@ -3,7 +3,7 @@ Translit UTF-8 quotes --SKIPIF-- --INI-- error_reporting=2047 -- cgit v1.2.1