From 4be289c814e79ffe95153c1b46a561627221c474 Mon Sep 17 00:00:00 2001 From: Crushable1278 <171992261+Crushable1278@users.noreply.github.com> Date: Thu, 12 Sep 2024 19:12:09 -0600 Subject: T6693: wireless: add missing country-code for 2.4GHz 802.11ax smoketest Commit 6b57f0333 ("T6693: wireless: Enable WiFi-6 (802.11ax) for 2.4GHz AccessPoints") added a new smoketest which lacked the presence of setting the country-code under the wifi interface, which is a bit different starting with VyOS 1.5. --- smoketest/scripts/cli/test_interfaces_wireless.py | 1 + 1 file changed, 1 insertion(+) diff --git a/smoketest/scripts/cli/test_interfaces_wireless.py b/smoketest/scripts/cli/test_interfaces_wireless.py index 86ddc9f4d..15f9ec8ce 100755 --- a/smoketest/scripts/cli/test_interfaces_wireless.py +++ b/smoketest/scripts/cli/test_interfaces_wireless.py @@ -313,6 +313,7 @@ class WirelessInterfaceTest(BasicInterfaceTest.TestCase): channel_set_width = '81' self.cli_set(self._base_path + [interface, 'ssid', ssid]) + self.cli_set(self._base_path + [interface, 'country-code', country]) self.cli_set(self._base_path + [interface, 'type', 'access-point']) self.cli_set(self._base_path + [interface, 'channel', channel]) self.cli_set(self._base_path + [interface, 'mode', 'ax']) -- cgit v1.2.3