Skip to content

Commit 1acdbc9

Browse files
committed
Use assertSetEqual
1 parent ef23321 commit 1acdbc9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/test/test_free_threading/test_lzma.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def worker():
4949
run_concurrently(worker_func=worker, nthreads=NTHREADS)
5050
self.assertEqual(len(output), NTHREADS)
5151
# Verify the expected chunks (order doesn't matter due to append race)
52-
self.assertEqual(set(output), set(chunks))
52+
self.assertSetEqual(set(output), set(chunks))
5353

5454

5555
if __name__ == "__main__":

0 commit comments

Comments
 (0)