diff options
-rw-r--r-- | tests/unit/test_commands.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/unit/test_commands.py b/tests/unit/test_commands.py index f36ba55..e644e1a 100644 --- a/tests/unit/test_commands.py +++ b/tests/unit/test_commands.py @@ -149,3 +149,4 @@ class TestCommands(unittest.TestCase): """Test that an incorrect cmd is processed correctly""" result = run_cmd("echoo test") self.assertEqual(127, result.get("code")) + self.assertIn("not found", result.get("output")) |