spec: fix incorrect default value for KAPOW_DATAAPI_URL

This caused ghost failures when running the tests.
This commit is contained in:
pancho horrillo
2019-10-30 17:39:19 +01:00
parent 275db5ef91
commit c3180e3e7d
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -47,7 +47,7 @@ class Env(EnvironConfig):
KAPOW_CONTROLAPI_URL = StringVar(default="http://localhost:8081")
#: Where the Data API is
KAPOW_DATAAPI_URL = StringVar(default="http://localhost:8081")
KAPOW_DATAAPI_URL = StringVar(default="http://localhost:8082")
#: Where the User Interface is
KAPOW_USER_URL = StringVar(default="http://localhost:8080")