From 546bf832705249ac4f4f7a0dccffc62410938aad Mon Sep 17 00:00:00 2001 From: Benjamin Schimke Date: Mon, 23 Sep 2024 14:20:38 +0200 Subject: [PATCH] update --- tests/integration/tests/test_version_upgrades.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/tests/test_version_upgrades.py b/tests/integration/tests/test_version_upgrades.py index 732957632..7964d6c27 100644 --- a/tests/integration/tests/test_version_upgrades.py +++ b/tests/integration/tests/test_version_upgrades.py @@ -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) @@ -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)