From 9d91bf0b82f4da1972a82e89dc2766bcd1c4a1b3 Mon Sep 17 00:00:00 2001 From: yusyus Date: Mon, 22 Dec 2025 00:31:02 +0300 Subject: [PATCH] test: Update version test to expect 2.2.0 --- tests/test_cli_paths.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_cli_paths.py b/tests/test_cli_paths.py index 5a96e82..0a0e5aa 100644 --- a/tests/test_cli_paths.py +++ b/tests/test_cli_paths.py @@ -126,7 +126,7 @@ class TestUnifiedCLIEntryPoints(unittest.TestCase): # Should show version output = result.stdout + result.stderr - self.assertIn('2.1.1', output) + self.assertIn('2.2.0', output) except FileNotFoundError: # If skill-seekers is not installed, skip this test