Skip to content

Commit

Permalink
Remove redundant true check
Browse files Browse the repository at this point in the history
  • Loading branch information
scheb committed Feb 14, 2021
1 parent 96396ff commit afb3712
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/DependencyInjection/SchebTwoFactorExtensionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ private function getFullConfig(): array

private function getEnvVarBasedConfig(bool $truthyConfig): array
{
if (true === $truthyConfig) {
if ($truthyConfig) {
$yaml = <<<EOF
trusted_device:
enabled: "%env(ENABLE_2FA_TRUTHY)%"
Expand Down

0 comments on commit afb3712

Please sign in to comment.