Skip to content

Commit 708c91e

Browse files
Apply suggestions from code review
Co-authored-by: Noah Stapp <[email protected]>
1 parent 6857ce7 commit 708c91e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_bson.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1045,8 +1045,8 @@ def test_exception_wrapping(self):
10451045

10461046
def test_minkey_maxkey_comparison(self):
10471047
# MinKey's <, <=, >, >=, !=, and ==.
1048-
# These tests should be kept as assertTrue as opposed to using unittest's build in comparison assertions because
1049-
# MinKey and MaxKey define their own __ge__, __le__, etc to be different and we want to explicitly test that.
1048+
# These tests should be kept as assertTrue as opposed to using unittest's built-in comparison assertions because
1049+
# MinKey and MaxKey define their own __ge__, __le__, and other comparison attributes, and we want to explicitly test that.
10501050
self.assertTrue(MinKey() < None)
10511051
self.assertTrue(MinKey() < 1)
10521052
self.assertTrue(MinKey() <= 1)

0 commit comments

Comments
 (0)