From 3fcc3904b4755081d17788960e68f6ce0f15b9a5 Mon Sep 17 00:00:00 2001 From: Matteo Rosati Date: Thu, 23 Apr 2026 21:18:35 +0200 Subject: [PATCH] remove pointless test --- tests/test_cli.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tests/test_cli.py b/tests/test_cli.py index 6d57615..73b6fef 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -141,12 +141,6 @@ class CliTests(unittest.TestCase): "where file_name=play.txt.\n", ) - def test_removed_alias_is_rejected(self) -> None: - result = _invoke(["lc"]) - - self.assertNotEqual(result.exit_code, 0) - self.assertIn("No such command", result.output) - def test_invalid_delete_filter_keeps_user_facing_error(self) -> None: result = _invoke(["delete", "notes", "--where", "file_name"])