From ed9f72087a931f6ffe004e788c1fcfe1a94679a8 Mon Sep 17 00:00:00 2001 From: Felipe Cavalcanti Date: Wed, 13 Feb 2019 14:40:40 -0200 Subject: [PATCH] docs little fixes --- docs/configuration.rst | 2 +- docs/test_writing.md | 38 +++++++++++++++++++------------------- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/docs/configuration.rst b/docs/configuration.rst index 4070445..444dae2 100644 --- a/docs/configuration.rst +++ b/docs/configuration.rst @@ -40,7 +40,7 @@ These configuration values configure the Prometheus monitoring service to check * - prometheus.port - 9191 - int - - Port which the Prometheus instance is running + - Port which the Prometheus instance will run Server =========== diff --git a/docs/test_writing.md b/docs/test_writing.md index 0218a80..e47e959 100644 --- a/docs/test_writing.md +++ b/docs/test_writing.md @@ -73,25 +73,25 @@ Below is a base example of a spec file, for a working example, check: [spec](htt ``` { - "numberOfInstances": 1, - "sequentialOperations": [ - { - "type": "request", - "uri": "connector.gameHandler.create", - "expect": { - "$response["code"]: { - "type": "string", - "value": "200" - } - }, - "store": { - "playerAccessToken": { - "type": "string", - "value": "$response["game"]["roomCode"]" - } - } - } - ] + "numberOfInstances": 1, + "sequentialOperations": [ + { + "type": "request", + "uri": "connector.gameHandler.create", + "expect": { + "$response.code": { + "type": "string", + "value": "200" + } + }, + "store": { + "playerAccessToken": { + "type": "string", + "value": "$response.token" + } + } + } + ] } ```