summaryrefslogtreecommitdiff
path: root/funtests
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2012-06-24 16:32:17 +0100
committerAsk Solem <ask@celeryproject.org>2012-06-24 16:32:17 +0100
commitfa816f6dc920aeb7b68b75f98fa1656da57d05c8 (patch)
treec2f2d076cc62ea62405fb6f267accab61d1f67c9 /funtests
parent4922c4aaea77be7a32a7d904104b055159e0da3e (diff)
downloadkombu-fa816f6dc920aeb7b68b75f98fa1656da57d05c8.tar.gz
BrokerConnection is now Connection in docs
Diffstat (limited to 'funtests')
-rw-r--r--funtests/transport.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/funtests/transport.py b/funtests/transport.py
index 76a0e010..5924a72a 100644
--- a/funtests/transport.py
+++ b/funtests/transport.py
@@ -9,7 +9,7 @@ import weakref
from nose import SkipTest
-from kombu import BrokerConnection
+from kombu import Connection
from kombu import Exchange, Queue
from kombu.tests.utils import skip_if_quick
@@ -104,7 +104,7 @@ class TransportCase(unittest.TestCase):
options.setdefault("userid", self.userid)
if self.password:
options.setdefault("password", self.password)
- return BrokerConnection(transport=self.transport, **options)
+ return Connection(transport=self.transport, **options)
def do_connect(self):
self.connection = self.get_connection(**self.connection_options)