From b7b4da42546c4931930830189e1aa327e6274183 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Mon, 2 Jan 2017 18:10:55 -0700 Subject: [PATCH] fix: add missing apacheSetenv to skipExisting expected array --- tests/josegonzalez/Dotenv/LoaderTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/josegonzalez/Dotenv/LoaderTest.php b/tests/josegonzalez/Dotenv/LoaderTest.php index b69f392..1d885ce 100644 --- a/tests/josegonzalez/Dotenv/LoaderTest.php +++ b/tests/josegonzalez/Dotenv/LoaderTest.php @@ -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()); } /**