##// END OF EJS Templates
Fix failing tests in core and zmq
Fernando Perez -
Show More
@@ -17,7 +17,7 b' from StringIO import StringIO'
17 17 import nose.tools as nt
18 18
19 19 from IPython.core import magic
20 from IPython.core import magic_functions as mf
20 from IPython.core.magics import execution
21 21 from IPython.nbformat.v3.tests.nbexamples import nb0
22 22 from IPython.nbformat import current
23 23 from IPython.testing import decorators as dec
@@ -429,7 +429,7 b' def test_timeit_arguments():'
429 429 _ip.magic("timeit ('#')")
430 430
431 431
432 @dec.skipif(mf.profile is None)
432 @dec.skipif(execution.profile is None)
433 433 def test_prun_quotes():
434 434 "Test that prun does not clobber string escapes (GH #1302)"
435 435 _ip.magic("prun -q x = '\t'")
@@ -33,7 +33,7 b' from IPython.core import page, pylabtools'
33 33 from IPython.core.autocall import ZMQExitAutocall
34 34 from IPython.core.displaypub import DisplayPublisher
35 35 from IPython.core.macro import Macro
36 from IPython.core.magic_functions import MacroToEdit
36 from IPython.core.magics import MacroToEdit
37 37 from IPython.core.payloadpage import install_payload_page
38 38 from IPython.lib.kernel import (
39 39 get_connection_file, get_connection_info, connect_qtconsole
@@ -49,7 +49,6 b' from IPython.zmq.displayhook import ZMQShellDisplayHook, _encode_binary'
49 49 from IPython.zmq.session import extract_header
50 50 from session import Session
51 51
52
53 52 #-----------------------------------------------------------------------------
54 53 # Functions and classes
55 54 #-----------------------------------------------------------------------------
General Comments 0
You need to be logged in to leave comments. Login now