summaryrefslogtreecommitdiffstats
path: root/Lib/unittest
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2010-01-29 19:35:39 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2010-01-29 19:35:39 (GMT)
commit05b41716240e01f603087ec503918161ebb806ec (patch)
tree64471ce08cdd283a4ffa68a0900e76c896d37041 /Lib/unittest
parent36ecd676eac6c9d7ace41a1ff35124912371e91d (diff)
downloadcpython-05b41716240e01f603087ec503918161ebb806ec.zip
cpython-05b41716240e01f603087ec503918161ebb806ec.tar.gz
cpython-05b41716240e01f603087ec503918161ebb806ec.tar.bz2
Fix typo in assertSequenceEqual docstring.
Diffstat (limited to 'Lib/unittest')
-rw-r--r--Lib/unittest/case.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/unittest/case.py b/Lib/unittest/case.py
index 2ebf2da..db51e6d 100644
--- a/Lib/unittest/case.py
+++ b/Lib/unittest/case.py
@@ -505,7 +505,7 @@ class TestCase(object):
def assertSequenceEqual(self, seq1, seq2, msg=None, seq_type=None):
"""An equality assertion for ordered sequences (like lists and tuples).
- For the purposes of this function, a valid orderd sequence type is one
+ For the purposes of this function, a valid ordered sequence type is one
which can be indexed, has a length, and has an equality operator.
Args: