From 80378e1358bbec96722f99c847b8c5b16fbdf1c7 2013-07-17 21:04:55 From: MinRK Date: 2013-07-17 21:04:55 Subject: [PATCH] fix pylab test in in-process kernel welcome message has changed --- diff --git a/IPython/kernel/inprocess/tests/test_kernel.py b/IPython/kernel/inprocess/tests/test_kernel.py index a5ec8c1..091886a 100644 --- a/IPython/kernel/inprocess/tests/test_kernel.py +++ b/IPython/kernel/inprocess/tests/test_kernel.py @@ -42,7 +42,7 @@ class InProcessKernelTestCase(unittest.TestCase): kc = self.kc kc.execute('%pylab') msg = get_stream_message(kc) - self.assert_('Welcome to pylab' in msg['content']['data']) + self.assert_('matplotlib' in msg['content']['data']) def test_raw_input(self): """ Does the in-process kernel handle raw_input correctly?