Skip to content

Commit 93f1fa1

Browse files
committed
test regex
1 parent bfc32cc commit 93f1fa1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/strands/experimental/bidi/_async/test_task_group.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ async def wait():
2525
async def fail():
2626
raise ValueError("test error")
2727

28-
with pytest.raises(ValueError, match="test error"):
28+
with pytest.raises(ValueError, match=r"test error"):
2929
async with _TaskGroup() as task_group:
3030
wait_task = task_group.create_task(wait())
3131
fail_task = task_group.create_task(fail())

0 commit comments

Comments
 (0)