diff options
author | Shitiz Garg <mail@dragooon.net> | 2014-06-20 14:41:59 +0530 |
---|---|---|
committer | Shitiz Garg <mail@dragooon.net> | 2014-06-20 14:41:59 +0530 |
commit | 3ac73a831a8ddb2a553a92e376452c625e722902 (patch) | |
tree | e0cb95fca1ff09359a411407a6ff86e2f300006a /tests/profilefields | |
parent | f076b4391545b77b58ae8a2303888ed63b7aec8e (diff) | |
download | forums-3ac73a831a8ddb2a553a92e376452c625e722902.tar forums-3ac73a831a8ddb2a553a92e376452c625e722902.tar.gz forums-3ac73a831a8ddb2a553a92e376452c625e722902.tar.bz2 forums-3ac73a831a8ddb2a553a92e376452c625e722902.tar.xz forums-3ac73a831a8ddb2a553a92e376452c625e722902.zip |
[ticket/12514] Fix indention for type_url_test.php
PHPBB3-12514
Diffstat (limited to 'tests/profilefields')
-rw-r--r-- | tests/profilefields/type_url_test.php | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/tests/profilefields/type_url_test.php b/tests/profilefields/type_url_test.php index 3ef2956531..9957510d90 100644 --- a/tests/profilefields/type_url_test.php +++ b/tests/profilefields/type_url_test.php @@ -55,39 +55,39 @@ class phpbb_profilefield_type_url_test extends phpbb_test_case return array( array( '', - array('field_required' => true), - 'FIELD_INVALID_URL-field', - 'Field should reject empty field that is required', + array('field_required' => true), + 'FIELD_INVALID_URL-field', + 'Field should reject empty field that is required', ), array( - 'invalidURL', - array(), - 'FIELD_INVALID_URL-field', - 'Field should reject invalid input', + 'invalidURL', + array(), + 'FIELD_INVALID_URL-field', + 'Field should reject invalid input', ), array( - 'http://onetwothree.example.io', - array(), - false, - 'Field should accept valid URL', + 'http://onetwothree.example.io', + array(), + false, + 'Field should accept valid URL', ), array( - 'http://example.com/index.html?param1=test¶m2=awesome', - array(), - false, - 'Field should accept valid URL', + 'http://example.com/index.html?param1=test¶m2=awesome', + array(), + false, + 'Field should accept valid URL', ), array( - 'http://example.com/index.html/test/path?document=get', - array(), - false, - 'Field should accept valid URL', + 'http://example.com/index.html/test/path?document=get', + array(), + false, + 'Field should accept valid URL', ), array( - 'http://example.com/index.html/test/path?document[]=DocType%20test&document[]=AnotherDoc', - array(), - 'FIELD_INVALID_URL-field', - 'Field should reject invalid URL having multi value parameters', + 'http://example.com/index.html/test/path?document[]=DocType%20test&document[]=AnotherDoc', + array(), + 'FIELD_INVALID_URL-field', + 'Field should reject invalid URL having multi value parameters', ), ); } |