]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[2855] Fix comments
authorMukund Sivaraman <muks@isc.org>
Tue, 25 Jun 2013 08:32:36 +0000 (14:02 +0530)
committerMukund Sivaraman <muks@isc.org>
Sun, 30 Jun 2013 15:57:27 +0000 (21:27 +0530)
src/lib/python/isc/memmgr/tests/builder_tests.py

index 230f39618d77dcb6b294d5311638e52d93facc78..4234b9166c839d27526faa062986fcc9492e240f 100644 (file)
@@ -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)