From: Michael Adam Date: Fri, 9 Mar 2012 11:00:32 +0000 (+0100) Subject: testtools/matchers.py: fix a comment typo X-Git-Tag: tdb-1.2.10~186 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e625a319e25acb66a772493914f33aad43c09322;p=thirdparty%2Fsamba.git testtools/matchers.py: fix a comment typo --- diff --git a/lib/testtools/testtools/matchers.py b/lib/testtools/testtools/matchers.py index 3279306650e..3ea47d80e7f 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.