Skip to content

Commit 937a38b

Browse files
conflict fix
1 parent 2b18ad3 commit 937a38b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/tests/backend/common/database/test_database_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@ async def run_database_context():
500500
# Raise an exception to test cleanup
501501
raise ValueError("Test exception")
502502

503-
with pytest.raises(ValueError):
503+
with pytest.raises(ValueError, match="Test exception"):
504504
await run_database_context()
505505

506506
# Even with exception, close should have been called

0 commit comments

Comments
 (0)