This was done originally in the add_turtle method, but not others.
Other changes here are to do with test config for mongo connection strings. Without a hostname delimiter (the slash), you get this error when running the build under PHP 7.0:
MongoDB\Driver\Exception\InvalidArgumentException: Failed to parse MongoDB URI: 'mongodb://localhost?connectTimeoutMS=20000'. Expected end of hostname delimiter.
To avoid PHP warnings we need to convert this line:
into:
This was done originally in the
add_turtle
method, but not others.Other changes here are to do with test config for mongo connection strings. Without a hostname delimiter (the slash), you get this error when running the build under PHP 7.0:
This fixes that up.