Commit 46d0767e authored by Jeremy Mikola's avatar Jeremy Mikola

Use 127.0.0.1 instead of localhost for default URI

parent 7ada7c2f
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
<php> <php>
<ini name="error_reporting" value="-1"/> <ini name="error_reporting" value="-1"/>
<env name="MONGODB_URI" value="mongodb://localhost:27017"/> <env name="MONGODB_URI" value="mongodb://127.0.0.1:27017"/>
<env name="MONGODB_DATABASE" value="phplib_test"/> <env name="MONGODB_DATABASE" value="phplib_test"/>
</php> </php>
......
...@@ -45,6 +45,6 @@ abstract class TestCase extends \PHPUnit_Framework_TestCase ...@@ -45,6 +45,6 @@ abstract class TestCase extends \PHPUnit_Framework_TestCase
*/ */
public function getUri() public function getUri()
{ {
return getenv('MONGODB_URI') ?: 'mongodb://localhost:27017'; return getenv('MONGODB_URI') ?: 'mongodb://127.0.0.1:27017';
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment