test: Update version assertions to 2.5.0

Updated test expectations from old versions to 2.5.0:
- tests/test_package_structure.py: 4 assertions (cli, mcp, mcp.tools, root)
- tests/test_cli_paths.py: CLI version output
- tests/test_adaptors/test_base.py: Metadata test data

All tests now expect 2.5.0 instead of 2.0.0/2.4.0.
This commit is contained in:
yusyus
2025-12-28 22:29:44 +03:00
parent 274ec968e6
commit 3fc1897340
3 changed files with 7 additions and 7 deletions

View File

@@ -126,7 +126,7 @@ class TestUnifiedCLIEntryPoints(unittest.TestCase):
# Should show version
output = result.stdout + result.stderr
self.assertIn('2.4.0', output)
self.assertIn('2.5.0', output)
except FileNotFoundError:
# If skill-seekers is not installed, skip this test