summaryrefslogtreecommitdiff
path: root/kombu/tests
diff options
context:
space:
mode:
authorAsk Solem <askh@opera.com>2010-11-11 13:11:14 +0100
committerAsk Solem <askh@opera.com>2010-11-11 13:11:14 +0100
commitf58b857a1d8a18c0fd5629ad7df51286ff7ecc4e (patch)
treea93222ca6c2bba98ae06e0dfd1a1191d0f7bf847 /kombu/tests
parent35bc4cdeffabe703a34d6058ba1a2b6c9463ce66 (diff)
downloadkombu-f58b857a1d8a18c0fd5629ad7df51286ff7ecc4e.tar.gz
Fixed typo 'KeyError(' -> 'KeyError'
Diffstat (limited to 'kombu/tests')
-rw-r--r--kombu/tests/test_pidbox.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/kombu/tests/test_pidbox.py b/kombu/tests/test_pidbox.py
index bc4ebbb9..e24be772 100644
--- a/kombu/tests/test_pidbox.py
+++ b/kombu/tests/test_pidbox.py
@@ -119,7 +119,7 @@ class test_Mailbox(unittest.TestCase):
res = node.dispatch("my_handler_name")
self.assertIn("error", res)
- self.assertIn("KeyError(", res["error"])
+ self.assertIn("KeyError", res["error"])
def test_dispatch_replies(self):
_replied = [False]