##// END OF EJS Templates
remove redundant BlockingKernelClient import from test_message_spec
MinRK -
Show More
@@ -15,7 +15,7 from Queue import Empty
15 15
16 16 import nose.tools as nt
17 17
18 from IPython.kernel import KernelManager, BlockingKernelClient
18 from IPython.kernel import KernelManager
19 19
20 20
21 21 from IPython.testing import decorators as dec
@@ -31,7 +31,6 from IPython.utils.traitlets import (
31 31 def setup():
32 32 global KM, KC
33 33 KM = KernelManager()
34 KM.client_factory = BlockingKernelClient
35 34 KM.start_kernel(stdout=PIPE, stderr=PIPE)
36 35 KC = KM.client()
37 36 KC.start_channels()
General Comments 0
You need to be logged in to leave comments. Login now