From b07b57276864fc7faf16d8d551da34d331fc468f Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Mon, 2 Jan 2017 17:45:17 -0700 Subject: [PATCH] fix: Empty values are treated as nulls --- 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 43e565e..34dcb09 100644 --- a/tests/josegonzalez/Dotenv/LoaderTest.php +++ b/tests/josegonzalez/Dotenv/LoaderTest.php @@ -143,7 +143,7 @@ public function testParse() 'STRING_FALSE' => 'false', 'STRING_EMPTY' => '', 'STRING_EMPTY_2' => '', - 'NO_VALUE_INLINE_COMMENT' => '', + 'NO_VALUE_INLINE_COMMENT' => null, ), $environment); $this->Loader->setFilepath($this->fixturePath . 'cake.env');