Skip to content

Commit 24a3c13

Browse files
committed
PYTHON-4834 Add __repr__ to IndexModel
- Rename test class
1 parent b053529 commit 24a3c13

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/test_operations.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@
2020
from pymongo.collation import Collation
2121

2222

23-
class TestOperations(UnitTest):
24-
"""Test the operations module."""
23+
class TestIndexModel(UnitTest):
24+
"""Test IndexModel features."""
25+
2526
def assertRepr(self, obj):
2627
new_obj = eval(repr(obj))
2728
self.assertEqual(type(new_obj), type(obj))

0 commit comments

Comments
 (0)