Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
bschimke95 committed Sep 23, 2024
1 parent dac21d7 commit 546bf83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/tests/test_version_upgrades.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def test_version_upgrades(instances: List[harness.Instance]):
)

# Setup the k8s snap from the bootstrap channel and setup basic configuration.
cp.exec(["snap", "install", "k8s", "--channel", channels[0], "--classic", "--amend"])
cp.exec(["snap", "install", "k8s", "--channel", channels[0], "--classic"])
cp.exec(["k8s", "bootstrap"])

util.stubbornly(retries=30, delay_s=20).until(util.ready_nodes(cp) == 1)
Expand All @@ -49,7 +49,7 @@ def test_version_upgrades(instances: List[harness.Instance]):

# note: the `--classic` flag will be ignored by snapd for strict snaps.
cp.exec(
["snap", "refresh", "k8s", "--channel", channel, "--classic", "--amend"]
["snap", "refresh", "k8s", "--channel", channel, "--classic"]
)

util.stubbornly(retries=30, delay_s=20).until(util.ready_nodes(cp) == 1)
Expand Down

0 comments on commit 546bf83

Please sign in to comment.