diff options
Diffstat (limited to 'tests/Misc')
-rw-r--r-- | tests/Misc/BugsTest.php | 4 | ||||
-rw-r--r-- | tests/Misc/ParameterTest.php | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/tests/Misc/BugsTest.php b/tests/Misc/BugsTest.php index 3065308..41c2f3a 100644 --- a/tests/Misc/BugsTest.php +++ b/tests/Misc/BugsTest.php @@ -8,7 +8,7 @@ use PhpMyAdmin\SqlParser\Tests\TestCase; class BugsTest extends TestCase { /** - * @dataProvider testBugProvider + * @dataProvider bugProvider * * @param mixed $test */ @@ -17,7 +17,7 @@ class BugsTest extends TestCase $this->runParserTest($test); } - public function testBugProvider() + public function bugProvider() { return [ ['bugs/gh9'], diff --git a/tests/Misc/ParameterTest.php b/tests/Misc/ParameterTest.php index a8b2f9b..accd19e 100644 --- a/tests/Misc/ParameterTest.php +++ b/tests/Misc/ParameterTest.php @@ -8,7 +8,7 @@ use PhpMyAdmin\SqlParser\Tests\TestCase; class ParameterTest extends TestCase { /** - * @dataProvider testParameterProvider + * @dataProvider parameterProvider * * @param mixed $test */ @@ -17,7 +17,7 @@ class ParameterTest extends TestCase $this->runParserTest($test); } - public function testParameterProvider() + public function parameterProvider() { return [ ['misc/parseParameter'], |