diff --git a/IPython/core/tests/test_inputsplitter.py b/IPython/core/tests/test_inputsplitter.py index 880a136..0b27bb4 100644 --- a/IPython/core/tests/test_inputsplitter.py +++ b/IPython/core/tests/test_inputsplitter.py @@ -342,9 +342,14 @@ class InputSplitterTestCase(unittest.TestCase): [['for i in range(10):' ' x=i**2']], - [['for i in range(10):' + [['for i in range(10):', ' x=i**2'], ['z = 1']], + + [['for i in range(10):', + ' x=i**2'], + ['z = 1'], + ['a = None']], [['"asdf"']],