Skip to content

Commit 899ead2

Browse files
committed
Fix misspelling variable
1 parent 478fbdc commit 899ead2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Symfony/Component/HttpFoundation/Tests/RequestTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1982,11 +1982,11 @@ public function testMethodSafeChecksCacheable()
19821982
/**
19831983
* @dataProvider methodCacheableProvider
19841984
*/
1985-
public function testMethodCacheable($method, $chacheable)
1985+
public function testMethodCacheable($method, $cacheable)
19861986
{
19871987
$request = new Request();
19881988
$request->setMethod($method);
1989-
$this->assertEquals($chacheable, $request->isMethodCacheable());
1989+
$this->assertEquals($cacheable, $request->isMethodCacheable());
19901990
}
19911991

19921992
public function methodCacheableProvider()

0 commit comments

Comments
 (0)