aboutsummaryrefslogtreecommitdiffstats
path: root/tests/profilefields/type_date_test.php
diff options
context:
space:
mode:
authorShitiz Garg <mail@dragooon.net>2014-06-18 01:11:21 +0530
committerShitiz Garg <mail@dragooon.net>2014-06-18 01:11:21 +0530
commitc15ab1e87e93ab1b345b30cd8f1cc181b19aa4aa (patch)
treecb95f72601509fb31e18a01370fbddf3223c1a4f /tests/profilefields/type_date_test.php
parent80d9e4b2e319b8a1b93c876e5304a6ed7b50b1d8 (diff)
downloadforums-c15ab1e87e93ab1b345b30cd8f1cc181b19aa4aa.tar
forums-c15ab1e87e93ab1b345b30cd8f1cc181b19aa4aa.tar.gz
forums-c15ab1e87e93ab1b345b30cd8f1cc181b19aa4aa.tar.bz2
forums-c15ab1e87e93ab1b345b30cd8f1cc181b19aa4aa.tar.xz
forums-c15ab1e87e93ab1b345b30cd8f1cc181b19aa4aa.zip
[ticket/12514] Remove get_ prefix from data providers
PHPBB3-12514
Diffstat (limited to 'tests/profilefields/type_date_test.php')
-rw-r--r--tests/profilefields/type_date_test.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/profilefields/type_date_test.php b/tests/profilefields/type_date_test.php
index fb3759ef5e..f694197008 100644
--- a/tests/profilefields/type_date_test.php
+++ b/tests/profilefields/type_date_test.php
@@ -54,7 +54,7 @@ class phpbb_profilefield_type_date_test extends phpbb_test_case
);
}
- public function get_profile_value_data()
+ public function profile_value_data()
{
return array(
array(
@@ -79,7 +79,7 @@ class phpbb_profilefield_type_date_test extends phpbb_test_case
}
/**
- * @dataProvider get_profile_value_data
+ * @dataProvider profile_value_data
*/
public function test_get_profile_value($value, $field_options, $expected, $description)
{
@@ -90,7 +90,7 @@ class phpbb_profilefield_type_date_test extends phpbb_test_case
$this->assertSame($expected, $result, $description);
}
- public function get_validate_profile_field_data()
+ public function validate_profile_field_data()
{
return array(
array(
@@ -127,7 +127,7 @@ class phpbb_profilefield_type_date_test extends phpbb_test_case
}
/**
- * @dataProvider get_validate_profile_field_data
+ * @dataProvider validate_profile_field_data
*/
public function test_validate_profile_field($value, $field_options, $expected, $description)
{