summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorRobert Collins <robertc@robertcollins.net>2009-08-08 10:07:58 +1000
committerRobert Collins <robertc@robertcollins.net>2009-08-08 10:07:58 +1000
commit3be3c3dc6f36e1ecaf668abc46d3c7942c4012bb (patch)
tree6b5776f40cb684ab124bb801c84e64afec96210e /python
parent23247df13197b36b92ffd1f1b0a23258eb6c5dae (diff)
downloadsubunit-git-3be3c3dc6f36e1ecaf668abc46d3c7942c4012bb.tar.gz
Review feedback.
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).
"""