From e99390bf48dae18c14a63ada3286c8931177004b 2015-03-26 17:02:51 From: Thomas Adriaan Hellinger Date: 2015-03-26 17:02:51 Subject: [PATCH] Removed decorative quotes in cmd causing 'commented_nargs' test to fail --- diff --git a/IPython/core/tests/test_alias.py b/IPython/core/tests/test_alias.py index 000fc7b..ecff0ea 100644 --- a/IPython/core/tests/test_alias.py +++ b/IPython/core/tests/test_alias.py @@ -53,7 +53,7 @@ def test_alias_args_commented_nargs(): """Check that alias correctly counts args, excluding those commented out""" am = _ip.alias_manager alias_name = 'comargcount' - cmd = 'echo this is %%s a "commented out" arg and this is not %s' + cmd = 'echo this is %%s a commented out arg and this is not %s' am.define_alias(alias_name, cmd) assert am.is_alias(alias_name)