summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/subunit/tests/test_test_protocol.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/python/subunit/tests/test_test_protocol.py b/python/subunit/tests/test_test_protocol.py
index 1e2246d..a036192 100644
--- a/python/subunit/tests/test_test_protocol.py
+++ b/python/subunit/tests/test_test_protocol.py
@@ -30,8 +30,9 @@ import subunit.iso8601 as iso8601
class MockTestProtocolServerClient(object):
"""A mock protocol server client to test callbacks.
- Note that this is deliberately not python 2.7 complete, to allow
- testing compatibility.
+ Note that this is deliberately not Python 2.7 complete, to allow
+ testing compatibility - we need a TestResult that will not have new methods
+ like addExpectedFailure.
"""
def __init__(self):
@@ -654,7 +655,7 @@ class TestTestProtocolServerAddxFail(unittest.TestCase):
class TestTestProtocolServerAddSkip(unittest.TestCase):
"""Tests for the skip keyword.
- In python this meets the testtools extended TestResult contract.
+ In Python this meets the testtools extended TestResult contract.
(See https://launchpad.net/testtools).
"""