summaryrefslogtreecommitdiffstats
path: root/Doc/library/unittest.rst
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-08-29 14:50:42 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2012-08-29 14:50:42 (GMT)
commit6bb9c73b06e481462a874b1aaa7d27d36c758e2e (patch)
tree8e65ee659476029ca53f590bca86d3ddeb93654a /Doc/library/unittest.rst
parent1321c444d91a324bfdb7d43b482139c2210df86d (diff)
downloadcpython-6bb9c73b06e481462a874b1aaa7d27d36c758e2e.zip
cpython-6bb9c73b06e481462a874b1aaa7d27d36c758e2e.tar.gz
cpython-6bb9c73b06e481462a874b1aaa7d27d36c758e2e.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 32d319f..0a3f64b 100644
--- a/Doc/library/unittest.rst
+++ b/Doc/library/unittest.rst
@@ -1157,7 +1157,7 @@ Test cases
.. method:: assertListEqual(list1, list2, msg=None)
assertTupleEqual(tuple1, tuple2, 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