Skip to content

Commit 046dcb4

Browse files
mblahaycarljm
andcommitted
Update Lib/unittest/case.py
Adding period missing in doc string for assertMultiLineEqual. Co-authored-by: Carl Meyer <[email protected]>
1 parent 58f7f62 commit 046dcb4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Lib/unittest/case.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1217,8 +1217,9 @@ def assertCountEqual(self, first, second, msg=None):
12171217

12181218
def assertMultiLineEqual(self, first, second, msg=None):
12191219
"""Assert that two multi-line strings are equal.
1220-
If the assertion fails, then provide an error message with a detailed
1221-
diff output
1220+
1221+
If the assertion fails, provide an error message with a detailed
1222+
diff output.
12221223
"""
12231224
self.assertIsInstance(first, str, "First argument is not a string")
12241225
self.assertIsInstance(second, str, "Second argument is not a string")

0 commit comments

Comments
 (0)