diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_cmd2.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/test_cmd2.py b/tests/test_cmd2.py index 22f250ac..74eb8c9b 100644 --- a/tests/test_cmd2.py +++ b/tests/test_cmd2.py @@ -1712,11 +1712,6 @@ def test_macro_create_with_alias_name(base_app): out, err = run_cmd(base_app, 'macro create {} help'.format(macro)) assert "Macro cannot have the same name as an alias" in err[0] -def test_macro_create_with_command_name(base_app): - macro = "my_macro" - out, err = run_cmd(base_app, 'macro create help stuff') - assert "Macro cannot have the same name as a command" in err[0] - def test_macro_create_with_args(base_app): # Create the macro out, err = run_cmd(base_app, 'macro create fake {1} {2}') |