diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-08-29 14:52:06 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-08-29 14:52:06 (GMT) |
commit | 75883ad45a3de2b5085dec566e8c7488b94872a1 (patch) | |
tree | e9e1d10bd72ef12bbb29953ed7739f2983446fef /Doc/library/unittest.rst | |
parent | 0c6a1e75486528cfaa23fc2995e650ed1a923d09 (diff) | |
parent | 49ccd514d2e29048062a3a669fed98329807c765 (diff) | |
download | cpython-75883ad45a3de2b5085dec566e8c7488b94872a1.zip cpython-75883ad45a3de2b5085dec566e8c7488b94872a1.tar.gz cpython-75883ad45a3de2b5085dec566e8c7488b94872a1.tar.bz2 |
Add missing comma.
Diffstat (limited to 'Doc/library/unittest.rst')
-rw-r--r-- | Doc/library/unittest.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 0af9038..2657ebd 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -1265,7 +1265,7 @@ Test cases .. method:: assertListEqual(first, second, msg=None) assertTupleEqual(first, second, msg=None) - Tests that two lists or tuples are equal. If not an error message is + Tests that two lists or tuples are equal. If not, an error message is constructed that shows only the differences between the two. An error is also raised if either of the parameters are of the wrong type. These methods are used by default when comparing lists or tuples with |