From 66716a24e6fcd87c6730faf55d98237fddc86552 Mon Sep 17 00:00:00 2001 From: Adrien Di Mascio Date: Tue, 20 Jan 2009 13:41:22 +0100 Subject: add a little comment to make the purpose of the test more explicit --- test/unittest_testlib.py | 2 ++ 1 file changed, 2 insertions(+) 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) -- cgit v1.2.1