diff options
author | Michael Adam <obnox@samba.org> | 2012-03-09 12:00:32 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2012-03-14 19:39:18 +0100 |
commit | e625a319e25acb66a772493914f33aad43c09322 (patch) | |
tree | 28615bc7bdbbeff41253b3cb8545df50ce820661 /lib/testtools | |
parent | db0ea166043416c4a5635c0f20b60f3e030c9441 (diff) | |
download | samba-e625a319e25acb66a772493914f33aad43c09322.tar.gz samba-e625a319e25acb66a772493914f33aad43c09322.tar.bz2 samba-e625a319e25acb66a772493914f33aad43c09322.zip |
testtools/matchers.py: fix a comment typo
Diffstat (limited to 'lib/testtools')
-rw-r--r-- | lib/testtools/testtools/matchers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/testtools/testtools/matchers.py b/lib/testtools/testtools/matchers.py index 3279306650..3ea47d80e7 100644 --- a/lib/testtools/testtools/matchers.py +++ b/lib/testtools/testtools/matchers.py @@ -642,7 +642,7 @@ class MatchesException(Matcher): class Contains(Matcher): - """Checks whether something is container in another thing.""" + """Checks whether something is contained in another thing.""" def __init__(self, needle): """Create a Contains Matcher. |