We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 478fbdc commit 899ead2Copy full SHA for 899ead2
src/Symfony/Component/HttpFoundation/Tests/RequestTest.php
@@ -1982,11 +1982,11 @@ public function testMethodSafeChecksCacheable()
1982
/**
1983
* @dataProvider methodCacheableProvider
1984
*/
1985
- public function testMethodCacheable($method, $chacheable)
+ public function testMethodCacheable($method, $cacheable)
1986
{
1987
$request = new Request();
1988
$request->setMethod($method);
1989
- $this->assertEquals($chacheable, $request->isMethodCacheable());
+ $this->assertEquals($cacheable, $request->isMethodCacheable());
1990
}
1991
1992
public function methodCacheableProvider()
0 commit comments