Skip to content

Commit

Permalink
gh-93247: Fix assert function in asyncio locks test (GH-93248)
Browse files Browse the repository at this point in the history
(cherry picked from commit 9081bbd)

Co-authored-by: Cyker Way <cykerway@gmail.com>
  • Loading branch information
miss-islington and cykerway committed Jun 6, 2022
1 parent 2f8aae3 commit fd247db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/test/test_asyncio/test_locks.py
Expand Up @@ -866,7 +866,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 fd247db

Please sign in to comment.