Skip to content

Commit 0241617

Browse files
tbitcsoz-agent
andcommitted
fix(test): bump hardcoded version in test_upgrade_to_new_version for v0.11.6
Co-Authored-By: Oz <oz-agent@warp.dev>
1 parent b36bc71 commit 0241617

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/test_cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,14 +115,14 @@ def test_upgrade_to_new_version(self, tmp_path: Path) -> None:
115115
target = _scaffold_governed(tmp_path)
116116
runner = CliRunner()
117117
result = runner.invoke(
118-
main, ["upgrade", "--project-dir", str(target), "--spec-version", "0.11.6"]
118+
main, ["upgrade", "--project-dir", str(target), "--spec-version", "0.11.7"]
119119
)
120120
assert result.exit_code == 0
121121
assert "Upgraded" in result.output
122122
# Verify scaffold.yml spec_version was updated to the target version
123123
with open(target / "scaffold.yml") as fh:
124124
data = yaml.safe_load(fh)
125-
assert data["spec_version"] == "0.11.5"
125+
assert data["spec_version"] == "0.11.7"
126126

127127

128128
class TestCLICreditsLimits:

0 commit comments

Comments
 (0)