Latest Docker for mac uses localhost
diff --git a/tests/test_helpers.bash b/tests/test_helpers.bash
index f7d7c45..63994f2 100644
--- a/tests/test_helpers.bash
+++ b/tests/test_helpers.bash
@@ -42,11 +42,7 @@
 
 function get_jenkins_url {
     if [ -z "${DOCKER_HOST}" ]; then
-        if [ "$(uname)" == "Darwin" ]; then
-            DOCKER_IP=docker.local
-        else
-            DOCKER_IP=localhost
-        fi
+        DOCKER_IP=localhost
     else
         DOCKER_IP=$(echo "$DOCKER_HOST" | sed -e 's|tcp://\(.*\):[0-9]*|\1|')
     fi