Skip to content

Commit

Permalink
Fixed test names
Browse files Browse the repository at this point in the history
Closes #480


Co-authored-by: Martin Krisell <martin.krisell@gmail.com>
  • Loading branch information
GrahamCampbell and Krisell committed May 23, 2021
1 parent da64796 commit a399cb5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Dotenv/DotenvTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public function testDotenvLoadsEnvironmentVars()
self::assertEmpty(getenv('NULL'));
}

public function testDotenvLoadsEnvironmentVarsMultipleNotShortCircuitMode()
public function testDotenvLoadsEnvironmentVarsMultipleWithShortCircuitMode()
{
$dotenv = Dotenv::createImmutable($this->folder, ['.env', 'example.env']);

Expand All @@ -91,7 +91,7 @@ public function testDotenvLoadsEnvironmentVarsMultipleNotShortCircuitMode()
);
}

public function testDotenvLoadsEnvironmentVarsMultipleWithShortCircuitMode()
public function testDotenvLoadsEnvironmentVarsMultipleWithoutShortCircuitMode()
{
$dotenv = Dotenv::createImmutable($this->folder, ['.env', 'example.env'], false);

Expand Down

0 comments on commit a399cb5

Please sign in to comment.