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 bfc32cc commit 93f1fa1Copy full SHA for 93f1fa1
tests/strands/experimental/bidi/_async/test_task_group.py
@@ -25,7 +25,7 @@ async def wait():
25
async def fail():
26
raise ValueError("test error")
27
28
- with pytest.raises(ValueError, match="test error"):
+ with pytest.raises(ValueError, match=r"test error"):
29
async with _TaskGroup() as task_group:
30
wait_task = task_group.create_task(wait())
31
fail_task = task_group.create_task(fail())
0 commit comments