test: Update version assertion to 1.3.0 in test_package_structure

Update expected version from 1.2.0 to 1.3.0 in test_cli_has_version

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
yusyus
2025-10-26 13:23:07 +03:00
parent 7a27af99a2
commit 0929649408

View File

@@ -21,7 +21,7 @@ class TestCliPackage:
"""Test that cli package has __version__."""
import cli
assert hasattr(cli, '__version__')
assert cli.__version__ == '1.2.0'
assert cli.__version__ == '1.3.0'
def test_cli_has_all(self):
"""Test that cli package has __all__ export list."""