From 69753f292c835e94d705d68043f56fa29f3b71f4 2014-09-09 19:37:48 From: Thomas Kluyver Date: 2014-09-09 19:37:48 Subject: [PATCH] Fix typo --- diff --git a/IPython/core/tests/test_completer.py b/IPython/core/tests/test_completer.py index 39f690a..ad8d84f 100644 --- a/IPython/core/tests/test_completer.py +++ b/IPython/core/tests/test_completer.py @@ -137,7 +137,7 @@ def test_latex_completions(): text, matches = ip.complete(k) nt.assert_equal(len(matches),1) nt.assert_equal(text, k) - mt.assert_equal(matches[0], latex_symbols[k]) + nt.assert_equal(matches[0], latex_symbols[k]) # Test a more complex line text, matches = ip.complete(u'print(\\alpha') nt.assert_equals(text, u'\\alpha')