Skip to content
Snippets Groups Projects
Commit 1f72a65e authored by zphrs's avatar zphrs
Browse files

made stress tests conform with this line from spec2: <key> is alphanumeric.

parent dd37afc6
No related branches found
No related tags found
No related merge requests found
......@@ -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}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment