1
0
mirror of https://github.com/guzzle/guzzle.git synced 2025-02-23 01:23:39 +01:00

Change provider method prefix to provider

This commit is contained in:
Jason Moore 2018-10-03 14:23:23 -05:00
parent c7faf23816
commit 6e0945c536
2 changed files with 4 additions and 4 deletions

View File

@ -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),

View File

@ -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),