Skip to content

Commit

Permalink
pythongh-93247: Fix assert function in asyncio locks test (python#93248)
Browse files Browse the repository at this point in the history
  • Loading branch information
cykerway authored Jun 6, 2022
1 parent 4082c8e commit 9081bbd
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit 9081bbd

Please sign in to comment.