diff options
author | Adam Nelson <adam@varud.com> | 2011-08-16 21:31:34 -0400 |
---|---|---|
committer | Adam Nelson <adam@varud.com> | 2011-08-16 21:31:34 -0400 |
commit | fb0afb3cc7f0a27258b1c98bcd49af86089e7b2b (patch) | |
tree | 44268502a35790244f1d1439fd6044ad8015477a /funtests | |
parent | 8730f0f42f7dc5bc5ccf6652da845110addcf386 (diff) | |
parent | a5f54f0745dd200a95516f4f770fff0a89127316 (diff) | |
download | kombu-fb0afb3cc7f0a27258b1c98bcd49af86089e7b2b.tar.gz |
Merge remote-tracking branch 'upstream/sqs'
Conflicts:
README.rst
funtests/tests/test_SQS.py
funtests/transport.py
kombu/transport/SQS.py
Diffstat (limited to 'funtests')
-rw-r--r-- | funtests/transport.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/funtests/transport.py b/funtests/transport.py index 76a0e010..8451604b 100644 --- a/funtests/transport.py +++ b/funtests/transport.py @@ -289,11 +289,11 @@ class TransportCase(unittest.TestCase): chanrefs = [] try: for i in xrange(100): - channel = conn.channel() + channel = conn.channel() chanrefs.append(weakref.ref(channel)) - channel.close() + channel.close() finally: - conn.close() + conn.close() return chanrefs for chanref in _createref(): |