diff --git a/tests/Cookie/FileCookieJarTest.php b/tests/Cookie/FileCookieJarTest.php index af378f40..f93ab37f 100644 --- a/tests/Cookie/FileCookieJarTest.php +++ b/tests/Cookie/FileCookieJarTest.php @@ -34,7 +34,7 @@ class FileCookieJarTest extends TestCase } /** - * @dataProvider testPersistsToFileFileParameters + * @dataProvider providerPersistsToFileFileParameters */ public function testPersistsToFile($testSaveSessionCookie = false) { @@ -78,7 +78,7 @@ class FileCookieJarTest extends TestCase unlink($this->file); } - public function testPersistsToFileFileParameters() + public function providerPersistsToFileFileParameters() { return array( array(false), diff --git a/tests/Cookie/SessionCookieJarTest.php b/tests/Cookie/SessionCookieJarTest.php index 8d6024a5..20bea844 100644 --- a/tests/Cookie/SessionCookieJarTest.php +++ b/tests/Cookie/SessionCookieJarTest.php @@ -38,7 +38,7 @@ class SessionCookieJarTest extends TestCase } /** - * @dataProvider testPersistsToSessionParameters + * @dataProvider providerPersistsToSessionParameters */ public function testPersistsToSession($testSaveSessionCookie = false) { @@ -82,7 +82,7 @@ class SessionCookieJarTest extends TestCase unset($_SESSION[$this->sessionVar]); } - public function testPersistsToSessionParameters() + public function providerPersistsToSessionParameters() { return array( array(false),