Skip to content

Commit

Permalink
Set constant visibility in tests to private where possible.
Browse files Browse the repository at this point in the history
  • Loading branch information
derrabus committed Oct 31, 2020
1 parent 872a648 commit 2671aff
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Tests/Authenticator/FormLoginAuthenticatorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,8 @@ class FormLoginAuthenticatorTest extends TestCase
private $requestWithSession;
private $authenticator;

const LOGIN_URL = 'http://login';
const DEFAULT_SUCCESS_URL = 'http://defaultsuccess';
const CUSTOM_SUCCESS_URL = 'http://customsuccess';
private const LOGIN_URL = 'http://login';
private const DEFAULT_SUCCESS_URL = 'http://defaultsuccess';

public function testAuthenticationFailureWithoutSession()
{
Expand Down

0 comments on commit 2671aff

Please sign in to comment.