diff options
Diffstat (limited to 'test/functional/cases/statistics')
4 files changed, 4 insertions, 4 deletions
diff --git a/test/functional/cases/statistics/redis-keyed-siphash.robot b/test/functional/cases/statistics/redis-keyed-siphash.robot index f598915cd..ec95efcd1 100644 --- a/test/functional/cases/statistics/redis-keyed-siphash.robot +++ b/test/functional/cases/statistics/redis-keyed-siphash.robot @@ -4,7 +4,7 @@ Suite Teardown Redis Statistics Teardown Resource lib.robot *** Variables *** -${REDIS_SERVER} servers = "${LOCAL_ADDR}:${REDIS_PORT}" +${REDIS_SERVER} servers = "${REDIS_ADDR}:${REDIS_PORT}" ${STATS_BACKEND} redis ${STATS_HASH} hash = "siphash"; ${STATS_KEY} key = "${KEY_PVT1}"; diff --git a/test/functional/cases/statistics/redis-keyed-xxhash.robot b/test/functional/cases/statistics/redis-keyed-xxhash.robot index ca87895c5..5a7b2daf3 100644 --- a/test/functional/cases/statistics/redis-keyed-xxhash.robot +++ b/test/functional/cases/statistics/redis-keyed-xxhash.robot @@ -4,7 +4,7 @@ Suite Teardown Redis Statistics Teardown Resource lib.robot *** Variables *** -${REDIS_SERVER} servers = "${LOCAL_ADDR}:${REDIS_PORT}" +${REDIS_SERVER} servers = "${REDIS_ADDR}:${REDIS_PORT}" ${STATS_BACKEND} redis ${STATS_HASH} hash = "xxhash"; ${STATS_KEY} key = "${KEY_PVT1}"; diff --git a/test/functional/cases/statistics/redis-plain-siphash.robot b/test/functional/cases/statistics/redis-plain-siphash.robot index 2946e8903..d436b1a68 100644 --- a/test/functional/cases/statistics/redis-plain-siphash.robot +++ b/test/functional/cases/statistics/redis-plain-siphash.robot @@ -4,7 +4,7 @@ Suite Teardown Redis Statistics Teardown Resource lib.robot *** Variables *** -${REDIS_SERVER} servers = "${LOCAL_ADDR}:${REDIS_PORT}" +${REDIS_SERVER} servers = "${REDIS_ADDR}:${REDIS_PORT}" ${STATS_BACKEND} redis ${STATS_HASH} hash = "siphash"; diff --git a/test/functional/cases/statistics/redis-plain-xxhash.robot b/test/functional/cases/statistics/redis-plain-xxhash.robot index de69465f0..0c45ac16b 100644 --- a/test/functional/cases/statistics/redis-plain-xxhash.robot +++ b/test/functional/cases/statistics/redis-plain-xxhash.robot @@ -4,7 +4,7 @@ Suite Teardown Redis Statistics Teardown Resource lib.robot *** Variables *** -${REDIS_SERVER} servers = "${LOCAL_ADDR}:${REDIS_PORT}" +${REDIS_SERVER} servers = "${REDIS_ADDR}:${REDIS_PORT}" ${STATS_BACKEND} redis ${STATS_HASH} hash = "xxhash"; |