From 65843ecafcc07a8d8e0ff6c14c77a289274f73e1 Mon Sep 17 00:00:00 2001 From: Oliver Sterzel Date: Wed, 12 Aug 2015 09:45:31 +0100 Subject: [PATCH] Updated scanning tests --- tests/features/steps/scanning.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/features/steps/scanning.py b/tests/features/steps/scanning.py index 9339962..4f4704c 100644 --- a/tests/features/steps/scanning.py +++ b/tests/features/steps/scanning.py @@ -9,7 +9,7 @@ def step_imp(context, contents): @when('I scan the file for a virus') def step_impl(context): files = { 'file': context.file_contents } - url = "http://localhost:9000" + url = "http://127.0.0.1:9000" r = requests.post(url + "/scan", files=files) context.result = r