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")