Skip to content

Commit

Permalink
Use different version for the everything package
Browse files Browse the repository at this point in the history
  • Loading branch information
twangboy authored and dwoz committed Jan 24, 2025
1 parent 2a384ec commit 2b288fa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/pytests/functional/states/test_chocolatey.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def vim(chocolatey_mod):

@pytest.fixture(scope="function")
def everything(chocolatey_mod):
chocolatey_mod.install(name="everything", version="1.4.1935")
chocolatey_mod.install(name="everything", version="1.4.11024")
yield
chocolatey_mod.uninstall(name="everything", force=True)

Expand All @@ -132,8 +132,8 @@ def test_installed_version(clean, chocolatey, chocolatey_mod):
def test_installed_version_existing_capitalization(
everything, chocolatey, chocolatey_mod
):
result = chocolatey.installed(name="everything", version="1.4.11024")
expected_changes = {"Everything": {"new": ["1.4.11024"], "old": ["1.4.1935"]}}
result = chocolatey.installed(name="everything", version="1.4.11026")
expected_changes = {"Everything": {"new": ["1.4.11026"], "old": ["1.4.11024"]}}
assert result["changes"] == expected_changes


Expand Down

0 comments on commit 2b288fa

Please sign in to comment.