From 1f72a65eaf52f50621b490cb13d6d24218dd5775 Mon Sep 17 00:00:00 2001 From: zphrs <z@zephiris.dev> Date: Fri, 14 Mar 2025 17:45:10 -0700 Subject: [PATCH] made stress tests conform with this line from spec2: <key> is alphanumeric. --- tests/stress/stress_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/stress/stress_tests.py b/tests/stress/stress_tests.py index 378cb9a..329ae19 100644 --- a/tests/stress/stress_tests.py +++ b/tests/stress/stress_tests.py @@ -7,7 +7,7 @@ from ...utils.testcase import TestCase from ...utils.util import Logger from ..helper import KVSMultiClient, KVSTestFixture -def make_random_key(prefix="key-", length=8): +def make_random_key(prefix="key", length=8): chars = string.ascii_lowercase + string.digits random_part = ''.join(random.choice(chars) for _ in range(length)) return f"{prefix}{random_part}" -- GitLab