Skip to content

Commit 6eedbb5

Browse files
committed
minor symfony#25271 [FrameworkBundle] Fix visibility of a test helper (dunglas)
This PR was merged into the 2.7 branch. Discussion ---------- [FrameworkBundle] Fix visibility of a test helper | Q | A | ------------- | --- | Branch? | 2.7 | Bug fix? | no | 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 | n/a | License | MIT | Doc PR | n/a Commits ------- 23b5758 [FrameworkBundle] Fix visibility of a test helper
2 parents de3a25a + 23b5758 commit 6eedbb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bundle/FrameworkBundle/Tests/Controller/RedirectControllerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ private function createRedirectController($httpPort = null, $httpsPort = null)
290290
return $controller;
291291
}
292292

293-
public function assertRedirectUrl(Response $returnResponse, $expectedUrl)
293+
private function assertRedirectUrl(Response $returnResponse, $expectedUrl)
294294
{
295295
$this->assertTrue($returnResponse->isRedirect($expectedUrl), "Expected: $expectedUrl\nGot: ".$returnResponse->headers->get('Location'));
296296
}

0 commit comments

Comments
 (0)