##// END OF EJS Templates
test_inputsplitter: suppress self-deprecation warning
Nikita Kniazev -
Show More
@@ -6,9 +6,11 b''
6 # Distributed under the terms of the Modified BSD License.
6 # Distributed under the terms of the Modified BSD License.
7
7
8 import unittest
8 import unittest
9 import pytest
9 import sys
10 import sys
10
11
11 from IPython.core import inputsplitter as isp
12 with pytest.warns(DeprecationWarning, match="inputsplitter"):
13 from IPython.core import inputsplitter as isp
12 from IPython.core.inputtransformer import InputTransformer
14 from IPython.core.inputtransformer import InputTransformer
13 from IPython.core.tests.test_inputtransformer import syntax, syntax_ml
15 from IPython.core.tests.test_inputtransformer import syntax, syntax_ml
14 from IPython.testing import tools as tt
16 from IPython.testing import tools as tt
General Comments 0
You need to be logged in to leave comments. Login now