diff options
author | Alan Conway <aconway@apache.org> | 2011-09-01 20:19:19 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2011-09-01 20:19:19 +0000 |
commit | f20a5c64a954f14cd68e00a74cec3eedae0ac881 (patch) | |
tree | ead814f7a53e6f900d2bb12a3acfd4567e2d037d | |
parent | ad35affd3f25a4ba589ff564dcd0a7cc9013ff21 (diff) | |
download | qpid-python-f20a5c64a954f14cd68e00a74cec3eedae0ac881.tar.gz |
NO-JIRA: Fix minor FIXME in brokertest.py
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1164249 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | cpp/src/tests/brokertest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/tests/brokertest.py b/cpp/src/tests/brokertest.py index 705857ee46..16d7fb0b78 100644 --- a/cpp/src/tests/brokertest.py +++ b/cpp/src/tests/brokertest.py @@ -504,7 +504,7 @@ class BrokerTest(TestCase): try: while True: contents.append(r.fetch(timeout=timeout).content) except messaging.Empty: pass - finally: pass #FIXME aconway 2011-04-14: r.close() + finally: r.close() return contents def assert_browse(self, session, queue, expect_contents, timeout=0): |