Fix notebook tests w/ new stream capturing API.

This commit is contained in:
Thomas Kluyver 2013-12-13 15:05:58 -08:00
parent 9da24dda50
commit eb680ddaa6

View File

@ -57,10 +57,9 @@ class NotebookTestBase(TestCase):
'--notebook-dir=%s' % cls.notebook_dir.name,
]
cls.notebook = Popen(notebook_args,
stdout=nose.ipy_stream_capturer.writefd,
stdout=nose.iptest_stdstreams_fileno(),
stderr=STDOUT,
)
nose.ipy_stream_capturer.ensure_started()
cls.wait_until_alive()
@classmethod