jira-to-code / src /jira_to_code /tasks /hard_7 /test_server.py
Navigam's picture
feat: expand task suite to 22 challenges and update reward signal mechanics
6392732
Raw
History Blame Contribute Delete
207 Bytes
from server import process, lock
import pytest
@pytest.mark.asyncio
async def test_deadlock_fixed():
try:
await process()
except TimeoutError:
pass
assert lock.locked() == False