diff options
author | Shitiz Garg <mail@dragooon.net> | 2014-06-27 19:03:19 +0530 |
---|---|---|
committer | Shitiz Garg <mail@dragooon.net> | 2014-06-27 19:03:19 +0530 |
commit | dbc223b4c374082d6385205e022664f38380366b (patch) | |
tree | 800d9d356e03ca4cb96173578a63ce6148f23141 /tests | |
parent | 24eeab4883c9ced8ba12d99a7cbc14839ba19388 (diff) | |
download | forums-dbc223b4c374082d6385205e022664f38380366b.tar forums-dbc223b4c374082d6385205e022664f38380366b.tar.gz forums-dbc223b4c374082d6385205e022664f38380366b.tar.bz2 forums-dbc223b4c374082d6385205e022664f38380366b.tar.xz forums-dbc223b4c374082d6385205e022664f38380366b.zip |
[ticket/12334] Change get_profile_value_raw_data to profile_value_raw_data
PHPBB3-12334
Diffstat (limited to 'tests')
-rw-r--r-- | tests/profilefields/type_bool_test.php | 4 | ||||
-rw-r--r-- | tests/profilefields/type_date_test.php | 4 | ||||
-rw-r--r-- | tests/profilefields/type_dropdown_test.php | 4 | ||||
-rw-r--r-- | tests/profilefields/type_int_test.php | 4 | ||||
-rw-r--r-- | tests/profilefields/type_string_test.php | 4 | ||||
-rw-r--r-- | tests/profilefields/type_url_test.php | 4 |
6 files changed, 12 insertions, 12 deletions
diff --git a/tests/profilefields/type_bool_test.php b/tests/profilefields/type_bool_test.php index ad9dd6514c..bdab179c8c 100644 --- a/tests/profilefields/type_bool_test.php +++ b/tests/profilefields/type_bool_test.php @@ -130,7 +130,7 @@ class phpbb_profilefield_type_bool_test extends phpbb_test_case $this->assertSame($expected, $result, $description); } - public function get_profile_value_raw_data() + public function profile_value_raw_data() { return array( array( @@ -167,7 +167,7 @@ class phpbb_profilefield_type_bool_test extends phpbb_test_case } /** - * @dataProvider get_profile_value_raw_data + * @dataProvider profile_value_raw_data */ public function test_get_profile_value_raw($value, $field_options, $expected, $description) { diff --git a/tests/profilefields/type_date_test.php b/tests/profilefields/type_date_test.php index 7f719d0f03..0ad2cde9fe 100644 --- a/tests/profilefields/type_date_test.php +++ b/tests/profilefields/type_date_test.php @@ -179,7 +179,7 @@ class phpbb_profilefield_type_date_test extends phpbb_test_case $this->assertSame($expected, $result, $description); } - public function get_profile_value_raw_data() + public function profile_value_raw_data() { return array( array( @@ -204,7 +204,7 @@ class phpbb_profilefield_type_date_test extends phpbb_test_case } /** - * @dataProvider get_profile_value_raw_data + * @dataProvider profile_value_raw_data */ public function test_get_profile_value_raw($value, $field_options, $expected, $description) { diff --git a/tests/profilefields/type_dropdown_test.php b/tests/profilefields/type_dropdown_test.php index ae5402177a..1d20578fc1 100644 --- a/tests/profilefields/type_dropdown_test.php +++ b/tests/profilefields/type_dropdown_test.php @@ -170,7 +170,7 @@ class phpbb_profilefield_type_dropdown_test extends phpbb_test_case $this->assertSame($expected, $result, $description); } - public function get_profile_value_raw_data() + public function profile_value_raw_data() { return array( array( @@ -207,7 +207,7 @@ class phpbb_profilefield_type_dropdown_test extends phpbb_test_case } /** - * @dataProvider get_profile_value_raw_data + * @dataProvider profile_value_raw_data */ public function test_get_profile_value_raw($value, $field_options, $expected, $description) { diff --git a/tests/profilefields/type_int_test.php b/tests/profilefields/type_int_test.php index 312b3874b8..4b7bbc18c4 100644 --- a/tests/profilefields/type_int_test.php +++ b/tests/profilefields/type_int_test.php @@ -169,7 +169,7 @@ class phpbb_profilefield_type_int_test extends phpbb_test_case $this->assertSame($expected, $result, $description); } - public function get_profile_value_raw_data() + public function profile_value_raw_data() { return array( array( @@ -212,7 +212,7 @@ class phpbb_profilefield_type_int_test extends phpbb_test_case } /** - * @dataProvider get_profile_value_raw_data + * @dataProvider profile_value_raw_data */ public function test_get_profile_value_raw($value, $field_options, $expected, $description) { diff --git a/tests/profilefields/type_string_test.php b/tests/profilefields/type_string_test.php index 2b3d239c3e..0df42f388f 100644 --- a/tests/profilefields/type_string_test.php +++ b/tests/profilefields/type_string_test.php @@ -225,7 +225,7 @@ class phpbb_profilefield_type_string_test extends phpbb_test_case $this->assertSame($expected, $result, $description); } - public function get_profile_value_raw_data() + public function profile_value_raw_data() { return array( array( @@ -244,7 +244,7 @@ class phpbb_profilefield_type_string_test extends phpbb_test_case } /** - * @dataProvider get_profile_value_raw_data + * @dataProvider profile_value_raw_data */ public function test_get_profile_value_raw($value, $field_options, $expected, $description) { diff --git a/tests/profilefields/type_url_test.php b/tests/profilefields/type_url_test.php index 607cb7b9aa..a45a28e7c7 100644 --- a/tests/profilefields/type_url_test.php +++ b/tests/profilefields/type_url_test.php @@ -104,7 +104,7 @@ class phpbb_profilefield_type_url_test extends phpbb_test_case $this->assertSame($expected, $result, $description); } - public function get_profile_value_raw_data() + public function profile_value_raw_data() { return array( array( @@ -123,7 +123,7 @@ class phpbb_profilefield_type_url_test extends phpbb_test_case } /** - * @dataProvider get_profile_value_raw_data + * @dataProvider profile_value_raw_data */ public function test_get_profile_value_raw($value, $field_options, $expected, $description) { |