From a4e5025dd1cf6fa303860b164e401382ef019b40 Mon Sep 17 00:00:00 2001 From: yusyus Date: Sun, 30 Nov 2025 12:25:55 +0300 Subject: [PATCH] test: Update version test to expect 2.1.1 --- 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 e839401..5a96e82 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.0.0', output) + self.assertIn('2.1.1', output) except FileNotFoundError: # If skill-seekers is not installed, skip this test