Skip to content

Commit

Permalink
fix updateForAuthenticator args
Browse files Browse the repository at this point in the history
  • Loading branch information
bechir committed Jun 23, 2023
1 parent aca2014 commit 6aea932
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tests/Security/SecurityConfigUpdaterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,6 @@ public function testUpdateForAuthenticator(string $firewallName, $entryPoint, st
$this->createLogger();

$updater = new SecurityConfigUpdater($this->ysmLogger);
$source = $this->getYamlSource($startingSourceFilename);
$actualSource = $updater->updateForAuthenticator($source, $firewallName, $entryPoint, 'App\\Security\\AppCustomAuthenticator', $logoutSetup);
$expectedSource = $this->getExpectedYaml('expected_authenticator', $expectedSourceFilename);
$source = file_get_contents(__DIR__.'/yaml_fixtures/source/'.$startingSourceFilename);
$actualSource = $updater->updateForAuthenticator($source, $firewallName, $entryPoint, 'App\\Security\\AppCustomAuthenticator', $logoutSetup, $supportRememberMe, $alwaysRememberMe);
$expectedSource = file_get_contents(__DIR__.'/yaml_fixtures/expected_authenticator/'.$expectedSourceFilename);
Expand Down

0 comments on commit 6aea932

Please sign in to comment.