Skip to content

Commit 5cf79cc

Browse files
minor symfony#26063 Fix misspelling variable (carusogabriel)
This PR was merged into the 2.7 branch. Discussion ---------- Fix misspelling variable | Q | A | ------------- | --- | Branch? | 2.7 | Bug fix? | yes | New feature? | no <!-- don't forget to update src/**/CHANGELOG.md files --> | BC breaks? | no | Deprecations? | no <!-- don't forget to update UPGRADE-*.md files --> | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | - Commits ------- 899ead2 Fix misspelling variable
2 parents 478fbdc + 899ead2 commit 5cf79cc

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)