Fix misspelling variable

This commit is contained in:
Gabriel Caruso 2018-02-06 07:47:25 -02:00
parent 478fbdc241
commit 899ead2b66
No known key found for this signature in database
GPG Key ID: D93D6E258EFC438A

View File

@ -1982,11 +1982,11 @@ class RequestTest extends TestCase
/** /**
* @dataProvider methodCacheableProvider * @dataProvider methodCacheableProvider
*/ */
public function testMethodCacheable($method, $chacheable) public function testMethodCacheable($method, $cacheable)
{ {
$request = new Request(); $request = new Request();
$request->setMethod($method); $request->setMethod($method);
$this->assertEquals($chacheable, $request->isMethodCacheable()); $this->assertEquals($cacheable, $request->isMethodCacheable());
} }
public function methodCacheableProvider() public function methodCacheableProvider()