Skip to content

Commit

Permalink
fix: add missing apacheSetenv to skipExisting expected array
Browse files Browse the repository at this point in the history
  • Loading branch information
josegonzalez committed Jan 3, 2017
1 parent 0969f69 commit b7b4da4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/josegonzalez/Dotenv/LoaderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -798,7 +798,7 @@ public function testSkipExisting()
$this->assertEquals(array('toEnv'), $this->Loader->skipped());

$this->Loader->skipExisting();
$this->assertEquals(array('define', 'toEnv', 'toServer', 'putenv'), $this->Loader->skipped());
$this->assertEquals(array('apacheSetenv', 'define', 'putenv', 'toEnv', 'toServer'), $this->Loader->skipped());
}

/**
Expand Down

0 comments on commit b7b4da4

Please sign in to comment.