summaryrefslogtreecommitdiffstats
path: root/Doc/library/unittest.rst
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-08-29 14:52:06 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2012-08-29 14:52:06 (GMT)
commit75883ad45a3de2b5085dec566e8c7488b94872a1 (patch)
treee9e1d10bd72ef12bbb29953ed7739f2983446fef /Doc/library/unittest.rst
parent0c6a1e75486528cfaa23fc2995e650ed1a923d09 (diff)
parent49ccd514d2e29048062a3a669fed98329807c765 (diff)
downloadcpython-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.rst2
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