summaryrefslogtreecommitdiff
path: root/python/subunit
diff options
context:
space:
mode:
authorJonathan Lange <jml@canonical.com>2011-02-10 17:44:07 +0000
committerJonathan Lange <jml@canonical.com>2011-02-10 17:44:07 +0000
commitd9936a42c5204813c56ac9dd361e4ce6545cbea0 (patch)
tree33c83d0149fe9f7f8c1a5aa8501445b5daa71759 /python/subunit
parent5358e383f7bdea693ec5f0e6182d8a45df9e8c3b (diff)
downloadsubunit-git-d9936a42c5204813c56ac9dd361e4ce6545cbea0.tar.gz
More flakes.
Diffstat (limited to 'python/subunit')
-rw-r--r--python/subunit/tests/test_subunit_filter.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/subunit/tests/test_subunit_filter.py b/python/subunit/tests/test_subunit_filter.py
index 3c65ed3..91f6f1f 100644
--- a/python/subunit/tests/test_subunit_filter.py
+++ b/python/subunit/tests/test_subunit_filter.py
@@ -6,7 +6,7 @@
# license at the users choice. A copy of both licenses are available in the
# project source as Apache-2.0 and BSD. You may not use this file except in
# compliance with one of these two licences.
-#
+#
# Unless required by applicable law or agreed to in writing, software
# distributed under these licenses is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
@@ -76,7 +76,7 @@ class TestTestResultFilter(unittest.TestCase):
self.assertEqual(3, self.filtered_result.testsRun)
def test_include_success(self):
- """Success's can be included if requested."""
+ """Successes can be included if requested."""
self.filtered_result = unittest.TestResult()
self.filter = TestResultFilter(self.filtered_result,
filter_success=False)
@@ -128,7 +128,7 @@ test todo
xfail todo
""")
self.input_stream.seek(0)
-
+
def test_suite():
loader = subunit.tests.TestUtil.TestLoader()