diff --git a/IPython/kernel/tests/test_message_spec.py b/IPython/kernel/tests/test_message_spec.py index 72389ac..1d2ee3c 100644 --- a/IPython/kernel/tests/test_message_spec.py +++ b/IPython/kernel/tests/test_message_spec.py @@ -15,7 +15,7 @@ from Queue import Empty import nose.tools as nt -from IPython.kernel import KernelManager, BlockingKernelClient +from IPython.kernel import KernelManager from IPython.testing import decorators as dec @@ -31,7 +31,6 @@ from IPython.utils.traitlets import ( def setup(): global KM, KC KM = KernelManager() - KM.client_factory = BlockingKernelClient KM.start_kernel(stdout=PIPE, stderr=PIPE) KC = KM.client() KC.start_channels()