Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Apply suggestions from code review
  • Loading branch information
graingert authored Jan 6, 2025
commit b3a20db05a04761cca8a3b407bc5131f81d083d1
2 changes: 1 addition & 1 deletion Lib/test/test_asyncio/test_taskgroups.py
Original file line number Diff line number Diff line change
Expand Up @@ -1021,8 +1021,8 @@ async def second_task():
except* MyError as excs:
exc = excs.exceptions[0]
Comment thread
graingert marked this conversation as resolved.

self.assertIsInstance(exc, MyError)
self.assertTrue(ran)
Comment thread
graingert marked this conversation as resolved.
Comment thread
graingert marked this conversation as resolved.
self.assertIsInstance(exc, MyError)

if __name__ == "__main__":
unittest.main()