##// END OF EJS Templates
Fix notebook tests w/ new stream capturing API.
Thomas Kluyver -
Show More
@@ -57,10 +57,9 b' class NotebookTestBase(TestCase):'
57 '--notebook-dir=%s' % cls.notebook_dir.name,
57 '--notebook-dir=%s' % cls.notebook_dir.name,
58 ]
58 ]
59 cls.notebook = Popen(notebook_args,
59 cls.notebook = Popen(notebook_args,
60 stdout=nose.ipy_stream_capturer.writefd,
60 stdout=nose.iptest_stdstreams_fileno(),
61 stderr=STDOUT,
61 stderr=STDOUT,
62 )
62 )
63 nose.ipy_stream_capturer.ensure_started()
64 cls.wait_until_alive()
63 cls.wait_until_alive()
65
64
66 @classmethod
65 @classmethod
General Comments 0
You need to be logged in to leave comments. Login now