From: Mukund Sivaraman Date: Tue, 25 Jun 2013 08:32:36 +0000 (+0530) Subject: [2855] Fix comments X-Git-Tag: bind10-1.2.0beta1-release~371^2~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=41e40c5cb4a62d32889fbbaf704792add24b02d2;p=thirdparty%2Fkea.git [2855] Fix comments --- diff --git a/src/lib/python/isc/memmgr/tests/builder_tests.py b/src/lib/python/isc/memmgr/tests/builder_tests.py index 230f39618d..4234b9166c 100644 --- a/src/lib/python/isc/memmgr/tests/builder_tests.py +++ b/src/lib/python/isc/memmgr/tests/builder_tests.py @@ -56,7 +56,7 @@ class TestMemorySegmentBuilder(unittest.TestCase): self._builder_thread.start() - # Now that the builder thread is running, send it the shutdown + # Now that the builder thread is running, send it a bad # command. The thread should exit its main loop and be joinable. with self._builder_cv: with self._builder_lock: @@ -69,7 +69,7 @@ class TestMemorySegmentBuilder(unittest.TestCase): self.assertFalse(self._builder_thread.isAlive()) # The command queue must be cleared, and the response queue must - # be untouched (we don't use it in this test). + # contain a response that a bad command was sent. with self._builder_lock: self.assertEqual(len(self._builder_command_queue), 0) self.assertEqual(len(self._builder_response_queue), 1)