gh-148186: Improve assertCountEqual description in docs. (#148463)

This commit is contained in:
Kliment Lamonov
2026-04-15 02:39:16 +03:00
committed by GitHub
parent fd81246bd5
commit 94d42bf5c2
+3 -3
View File
@@ -1223,9 +1223,9 @@ Test cases
| :meth:`assertNotRegex(s, r) | ``not r.search(s)`` | 3.2 |
| <TestCase.assertNotRegex>` | | |
+---------------------------------------+--------------------------------+--------------+
| :meth:`assertCountEqual(a, b) | *a* and *b* have the same | 3.2 |
| <TestCase.assertCountEqual>` | elements in the same number, | |
| | regardless of their order. | |
| :meth:`assertCountEqual(a, b) | *a* contains the same elements | 3.2 |
| <TestCase.assertCountEqual>` | as *b*, regardless of their | |
| | order. | |
+---------------------------------------+--------------------------------+--------------+
| :meth:`assertStartsWith(a, b) | ``a.startswith(b)`` | 3.14 |
| <TestCase.assertStartsWith>` | | |