Skip to content
Merged
Changes from all commits
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
gh-93247: Fix assert function in asyncio locks test (GH-93248)
(cherry picked from commit 9081bbd)

Co-authored-by: Cyker Way <cykerway@gmail.com>
  • Loading branch information
cykerway authored and miss-islington committed Jun 6, 2022
commit ad0c3775c7d4b869cdbc9ce91561e7f0e4b6c5d5
2 changes: 1 addition & 1 deletion Lib/test/test_asyncio/test_locks.py
Original file line number Diff line number Diff line change
Expand Up @@ -853,7 +853,7 @@ async def c4(result):
self.assertTrue(t1.result())
race_tasks = [t2, t3, t4]
done_tasks = [t for t in race_tasks if t.done() and t.result()]
self.assertTrue(2, len(done_tasks))
self.assertEqual(2, len(done_tasks))

# cleanup locked semaphore
sem.release()
Expand Down