diff options
author | Stephen D. Huston <shuston@apache.org> | 2009-11-13 00:18:08 +0000 |
---|---|---|
committer | Stephen D. Huston <shuston@apache.org> | 2009-11-13 00:18:08 +0000 |
commit | 86a21c9f8ff4b418fc3475b0cbafe6ea3d5a158d (patch) | |
tree | 17500a2763b51f0b6ca84d6939a4173efe3595f8 | |
parent | 6f97edf89536dadb1ee63a32b86ef0394721d476 (diff) | |
download | qpid-python-86a21c9f8ff4b418fc3475b0cbafe6ea3d5a158d.tar.gz |
No need to import from testrunner; allows this to run on Windows as well.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@835656 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | python/tests_0-10/persistence.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/tests_0-10/persistence.py b/python/tests_0-10/persistence.py index b93bb0bbfb..e9cf9b7caa 100644 --- a/python/tests_0-10/persistence.py +++ b/python/tests_0-10/persistence.py @@ -17,7 +17,8 @@ # under the License. # from qpid.datatypes import Message, RangedSet -from qpid.testlib import testrunner, TestBase010 +#from qpid.testlib import testrunner, TestBase010 +from qpid.testlib import TestBase010 class PersistenceTests(TestBase010): def test_delete_queue_after_publish(self): |