summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrien Di Mascio <Adrien.DiMascio@logilab.fr>2009-01-20 13:41:22 +0100
committerAdrien Di Mascio <Adrien.DiMascio@logilab.fr>2009-01-20 13:41:22 +0100
commit66716a24e6fcd87c6730faf55d98237fddc86552 (patch)
tree2a48dd8d059dcabbe0073429b36f4e8ed6934e47
parentdda3f359d9cd34a08293026f7401893011111138 (diff)
downloadlogilab-common-66716a24e6fcd87c6730faf55d98237fddc86552.tar.gz
add a little comment to make the purpose of the test more explicit
-rw-r--r--test/unittest_testlib.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/unittest_testlib.py b/test/unittest_testlib.py
index 25462cd..053ae05 100644
--- a/test/unittest_testlib.py
+++ b/test/unittest_testlib.py
@@ -613,6 +613,7 @@ class OutErrCaptureTC(TestCase):
def test_xxx(self):
raise Exception(u'\xe9')
test = FooTC('test_xxx')
+ # run the test and make sure testlib doesn't raise an exception
result = self.runner.run(test)
def test_encoded_non_ascii_messages(self):
@@ -620,6 +621,7 @@ class OutErrCaptureTC(TestCase):
def test_xxx(self):
raise Exception('\xe9')
test = FooTC('test_xxx')
+ # run the test and make sure testlib doesn't raise an exception
result = self.runner.run(test)