diff --git a/Tests/DotenvTest.php b/Tests/DotenvTest.php index 4fb34fe..4345792 100644 --- a/Tests/DotenvTest.php +++ b/Tests/DotenvTest.php @@ -544,7 +544,7 @@ public function testSERVERVarsDuplicationInENV() unset($_ENV['SYMFONY_DOTENV_VARS'], $_SERVER['SYMFONY_DOTENV_VARS'], $_ENV['FOO']); $_SERVER['FOO'] = 'CCC'; - (new Dotenv(false))->populate(['FOO' => 'BAR']); + (new Dotenv())->populate(['FOO' => 'BAR']); $this->assertSame('CCC', $_ENV['FOO']); }