aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShitiz Garg <mail@dragooon.net>2014-06-18 18:18:15 +0530
committerShitiz Garg <mail@dragooon.net>2014-06-18 18:18:15 +0530
commitf076b4391545b77b58ae8a2303888ed63b7aec8e (patch)
tree74cd274e4e0aaf8c57bc871b487ffc4c5f1103f4 /tests/profilefields
parent[ticket/12514] Convert spaces to tabs (diff)
downloadphpbb-f076b4391545b77b58ae8a2303888ed63b7aec8e.tar.gz
phpbb-f076b4391545b77b58ae8a2303888ed63b7aec8e.tar.bz2
phpbb-f076b4391545b77b58ae8a2303888ed63b7aec8e.zip
[ticket/12514] Missed a few spaces in comments
PHPBB3-12514
Diffstat (limited to 'tests/profilefields')
-rw-r--r--tests/profilefields/type_bool_test.php14
-rw-r--r--tests/profilefields/type_date_test.php18
-rw-r--r--tests/profilefields/type_dropdown_test.php18
-rw-r--r--tests/profilefields/type_int_test.php10
-rw-r--r--tests/profilefields/type_string_test.php18
-rw-r--r--tests/profilefields/type_url_test.php14
6 files changed, 46 insertions, 46 deletions
diff --git a/tests/profilefields/type_bool_test.php b/tests/profilefields/type_bool_test.php
index 87c9d7c96f..03ce9445e1 100644
--- a/tests/profilefields/type_bool_test.php
+++ b/tests/profilefields/type_bool_test.php
@@ -18,11 +18,11 @@ class phpbb_profilefield_type_bool_test extends phpbb_test_case
protected $options = array();
/**
- * Sets up basic test objects
- *
- * @access public
- * @return void
- */
+ * Sets up basic test objects
+ *
+ * @access public
+ * @return void
+ */
public function setUp()
{
$user = $this->getMock('\phpbb\user');
@@ -83,8 +83,8 @@ class phpbb_profilefield_type_bool_test extends phpbb_test_case
}
/**
- * @dataProvider validate_profile_field_data
- */
+ * @dataProvider validate_profile_field_data
+ */
public function test_validate_profile_field($value, $field_options, $expected, $description)
{
$field_options = array_merge($this->field_options, $field_options);
diff --git a/tests/profilefields/type_date_test.php b/tests/profilefields/type_date_test.php
index f356e7727c..4c5dfce911 100644
--- a/tests/profilefields/type_date_test.php
+++ b/tests/profilefields/type_date_test.php
@@ -18,11 +18,11 @@ class phpbb_profilefield_type_date_test extends phpbb_test_case
protected $user;
/**
- * Sets up basic test objects
- *
- * @access public
- * @return null
- */
+ * Sets up basic test objects
+ *
+ * @access public
+ * @return null
+ */
public function setUp()
{
$this->user = $this->getMock('\phpbb\user');
@@ -84,8 +84,8 @@ class phpbb_profilefield_type_date_test extends phpbb_test_case
}
/**
- * @dataProvider profile_value_data
- */
+ * @dataProvider profile_value_data
+ */
public function test_get_profile_value($value, $field_options, $expected, $description)
{
$field_options = array_merge($this->field_options, $field_options);
@@ -168,8 +168,8 @@ class phpbb_profilefield_type_date_test extends phpbb_test_case
}
/**
- * @dataProvider validate_profile_field_data
- */
+ * @dataProvider validate_profile_field_data
+ */
public function test_validate_profile_field($value, $field_options, $expected, $description)
{
$field_options = array_merge($this->field_options, $field_options);
diff --git a/tests/profilefields/type_dropdown_test.php b/tests/profilefields/type_dropdown_test.php
index 559ec254a7..d1983eb4cb 100644
--- a/tests/profilefields/type_dropdown_test.php
+++ b/tests/profilefields/type_dropdown_test.php
@@ -18,11 +18,11 @@ class phpbb_profilefield_type_dropdown_test extends phpbb_test_case
protected $dropdown_options = array();
/**
- * Sets up basic test objects
- *
- * @access public
- * @return null
- */
+ * Sets up basic test objects
+ *
+ * @access public
+ * @return null
+ */
public function setUp()
{
$user = $this->getMock('\phpbb\user');
@@ -116,8 +116,8 @@ class phpbb_profilefield_type_dropdown_test extends phpbb_test_case
}
/**
- * @dataProvider validate_profile_field_data
- */
+ * @dataProvider validate_profile_field_data
+ */
public function test_validate_profile_field($value, $field_options, $expected, $description)
{
$field_options = array_merge($this->field_options, $field_options);
@@ -159,8 +159,8 @@ class phpbb_profilefield_type_dropdown_test extends phpbb_test_case
/**
- * @dataProvider profile_value_data
- */
+ * @dataProvider profile_value_data
+ */
public function test_get_profile_value($value, $field_options, $expected, $description)
{
$field_options = array_merge($this->field_options, $field_options);
diff --git a/tests/profilefields/type_int_test.php b/tests/profilefields/type_int_test.php
index 9b0adcb78c..c43a20f59d 100644
--- a/tests/profilefields/type_int_test.php
+++ b/tests/profilefields/type_int_test.php
@@ -17,11 +17,11 @@ class phpbb_profilefield_type_int_test extends phpbb_test_case
protected $field_options;
/**
- * Sets up basic test objects
- *
- * @access public
- * @return null
- */
+ * Sets up basic test objects
+ *
+ * @access public
+ * @return null
+ */
public function setUp()
{
$user = $this->getMock('\phpbb\user');
diff --git a/tests/profilefields/type_string_test.php b/tests/profilefields/type_string_test.php
index 5c376eea3a..b796ef3073 100644
--- a/tests/profilefields/type_string_test.php
+++ b/tests/profilefields/type_string_test.php
@@ -21,11 +21,11 @@ class phpbb_profilefield_type_string_test extends phpbb_test_case
protected $field_options;
/**
- * Sets up basic test objects
- *
- * @access public
- * @return null
- */
+ * Sets up basic test objects
+ *
+ * @access public
+ * @return null
+ */
public function setUp()
{
global $request, $user, $cache;
@@ -147,8 +147,8 @@ class phpbb_profilefield_type_string_test extends phpbb_test_case
}
/**
- * @dataProvider validate_profile_field_data
- */
+ * @dataProvider validate_profile_field_data
+ */
public function test_validate_profile_field($value, $field_options, $expected, $description)
{
$field_options = array_merge($this->field_options, $field_options);
@@ -190,8 +190,8 @@ class phpbb_profilefield_type_string_test extends phpbb_test_case
/**
- * @dataProvider profile_value_data
- */
+ * @dataProvider profile_value_data
+ */
public function test_get_profile_value($value, $field_options, $expected, $description)
{
$field_options = array_merge($this->field_options, $field_options);
diff --git a/tests/profilefields/type_url_test.php b/tests/profilefields/type_url_test.php
index 3dd32401a0..3ef2956531 100644
--- a/tests/profilefields/type_url_test.php
+++ b/tests/profilefields/type_url_test.php
@@ -19,11 +19,11 @@ class phpbb_profilefield_type_url_test extends phpbb_test_case
protected $field_options;
/**
- * Sets up basic test objects
- *
- * @access public
- * @return null
- */
+ * Sets up basic test objects
+ *
+ * @access public
+ * @return null
+ */
public function setUp()
{
$user = $this->getMock('\phpbb\user');
@@ -93,8 +93,8 @@ class phpbb_profilefield_type_url_test extends phpbb_test_case
}
/**
- * @dataProvider validate_profile_field_data
- */
+ * @dataProvider validate_profile_field_data
+ */
public function test_validate_profile_field($value, $field_options, $expected, $description)
{
$field_options = array_merge($this->field_options, $field_options);