From 8f08aa4fc8e0944bbe1fbeb0aca7a22a027f0480 Mon Sep 17 00:00:00 2001 From: David Wilson Date: Sat, 16 Sep 2017 20:00:57 +0530 Subject: [PATCH] Tidy up test. --- tests/call_function_test.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/call_function_test.py b/tests/call_function_test.py index 9cbfe23e..d33c49ed 100644 --- a/tests/call_function_test.py +++ b/tests/call_function_test.py @@ -62,9 +62,7 @@ class CallFunctionTest(unittest.TestCase): except mitogen.core.StreamError, e: pass - assert e[0] == ( - "attempted unpickle from 'call_function_test'" - ) + assert e[0] == "attempted unpickle from 'call_function_test'" def test_returns_dead(self): assert mitogen.core._DEAD == self.local.call(func_returns_dead)