aboutsummaryrefslogtreecommitdiffstats
path: root/tests/request/type_cast_helper_test.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2012-09-08 13:43:14 +0200
committerAndreas Fischer <bantu@phpbb.com>2012-09-08 13:43:14 +0200
commit4550fff55a10be737b76275ae5323675ab1c3939 (patch)
treef797caacf3567be5ce82bcdf63641a3cd4831d95 /tests/request/type_cast_helper_test.php
parent2c41b9062a6a8335aa1bfa7c80077f4ae33d33e4 (diff)
downloadforums-4550fff55a10be737b76275ae5323675ab1c3939.tar
forums-4550fff55a10be737b76275ae5323675ab1c3939.tar.gz
forums-4550fff55a10be737b76275ae5323675ab1c3939.tar.bz2
forums-4550fff55a10be737b76275ae5323675ab1c3939.tar.xz
forums-4550fff55a10be737b76275ae5323675ab1c3939.zip
[ticket/8713] Use \t in double quotes instead of tabs.
PHPBB3-8713
Diffstat (limited to 'tests/request/type_cast_helper_test.php')
-rw-r--r--tests/request/type_cast_helper_test.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/request/type_cast_helper_test.php b/tests/request/type_cast_helper_test.php
index 176638dc44..8203703639 100644
--- a/tests/request/type_cast_helper_test.php
+++ b/tests/request/type_cast_helper_test.php
@@ -51,8 +51,8 @@ class phpbb_type_cast_helper_test extends phpbb_test_case
public function test_nested_untrimmed_recursive_set_var()
{
- $data = array(' eviL<3 ');
- $expected = array(' eviL&lt;3 ');
+ $data = array(" eviL<3\t\t");
+ $expected = array(" eviL&lt;3\t\t");
$this->type_cast_helper->recursive_set_var($data, array(0 => ''), true, false);