We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5892a37 commit fd98b62Copy full SHA for fd98b62
tests/conftest.py
@@ -114,7 +114,10 @@ async def session_with_invalid_tpjwt(
114
@pytest.fixture
115
def call_sign_generator() -> str:
116
"""Return random work_id"""
117
- return "".join(random.choice(string.ascii_uppercase + string.digits) for _ in range(6))
+ ret = "".join(random.choice(string.ascii_uppercase + string.digits) for _ in range(6))
118
+ ret += "_"
119
+ ret += "".join(random.choice(string.ascii_uppercase + string.digits) for _ in range(2))
120
+ return ret
121
122
123
# FIXME: rename this, or if only needed in one test file=module, move it there
0 commit comments