From c3180e3e7de075405789dc63f90b384686134d1c Mon Sep 17 00:00:00 2001 From: pancho horrillo Date: Wed, 30 Oct 2019 17:39:19 +0100 Subject: [PATCH] spec: fix incorrect default value for KAPOW_DATAAPI_URL This caused ghost failures when running the tests. --- spec/test/README.rst | 2 +- spec/test/features/steps/steps.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/test/README.rst b/spec/test/README.rst index 2f6803c..42a2e2b 100644 --- a/spec/test/README.rst +++ b/spec/test/README.rst @@ -60,7 +60,7 @@ environment variables: * ``KAPOW_SERVER_CMD``: The full command line to start a non-interactive listening kapow server. By default: ``kapow server`` * ``KAPOW_CONTROLAPI_URL``: URL of the Control API. By default: ``http://localhost:8081`` -* ``KAPOW_DATAAPI_URL``: URL of the Data API. By default: ``http://localhost:8080`` +* ``KAPOW_DATAAPI_URL``: URL of the Data API. By default: ``http://localhost:8082`` * ``KAPOW_USER_URL``: URL of the User Server. By default: ``http://localhost:8080`` diff --git a/spec/test/features/steps/steps.py b/spec/test/features/steps/steps.py index 5adfa63..f280e0f 100644 --- a/spec/test/features/steps/steps.py +++ b/spec/test/features/steps/steps.py @@ -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")