From ca7bf2f0d51bf9ca24073dbc0024b353cfa64980 Mon Sep 17 00:00:00 2001 From: JP Meijers Date: Wed, 7 Aug 2024 11:04:19 +0200 Subject: [PATCH] Pin matter-all-clusters snap to beta --- tests/thread_tests/remote.go | 2 +- tests/upgrade_test.go | 2 +- tests/wifi_test.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/thread_tests/remote.go b/tests/thread_tests/remote.go index 75370b3..1e76854 100644 --- a/tests/thread_tests/remote.go +++ b/tests/thread_tests/remote.go @@ -121,7 +121,7 @@ func remote_deployAllClustersApp(t *testing.T) { commands := []string{ // "sudo apt install -y bluez", "sudo snap remove --purge matter-all-clusters-app", - "sudo snap install matter-all-clusters-app --edge", + "sudo snap install matter-all-clusters-app --channel=latest/beta", "sudo snap set matter-all-clusters-app args='--thread'", "sudo snap connect matter-all-clusters-app:avahi-control", // "sudo snap connect matter-all-clusters-app:bluez", diff --git a/tests/upgrade_test.go b/tests/upgrade_test.go index e4f6979..4494b15 100644 --- a/tests/upgrade_test.go +++ b/tests/upgrade_test.go @@ -32,7 +32,7 @@ func TestUpgrade(t *testing.T) { utils.SnapConnect(t, chipToolSnap+":process-control", "") // Install all clusters app - utils.SnapInstallFromStore(t, allClustersSnap, env.SnapChannel()) + utils.SnapInstallFromStore(t, allClustersSnap, "latest/beta") // Setup all clusters app utils.SnapSet(t, allClustersSnap, "args", "--wifi") diff --git a/tests/wifi_test.go b/tests/wifi_test.go index d8faaaf..0fd3973 100644 --- a/tests/wifi_test.go +++ b/tests/wifi_test.go @@ -21,7 +21,7 @@ func TestAllClustersAppWiFi(t *testing.T) { }) // Install all clusters app - utils.SnapInstallFromStore(t, allClustersSnap, "latest/edge") + utils.SnapInstallFromStore(t, allClustersSnap, "latest/beta") // Setup all clusters app utils.SnapSet(t, allClustersSnap, "args", "--wifi")