diff options
author | Christian Breunig <christian@breunig.cc> | 2024-06-18 16:53:33 +0200 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2024-06-18 16:57:03 +0200 |
commit | 312273c9569d973c510d871adb941709804d8868 (patch) | |
tree | 209edf64714bd1a5cfcf4ab8d313621c3ddea821 /smoketest | |
parent | 578fbe0eb436697132e5a738fec5a4ac61ced8da (diff) | |
download | vyos-1x-312273c9569d973c510d871adb941709804d8868.tar.gz vyos-1x-312273c9569d973c510d871adb941709804d8868.zip |
wireless: T6425: adjust to latest country-code changes
Commit 9e22ab6b2a ("wireless: T6318: move country-code to a system wide
configuration") removed the per wifi interface setting for a country-code. This
commit adjust the smoketests to the new design.
Diffstat (limited to 'smoketest')
-rwxr-xr-x | smoketest/scripts/cli/test_interfaces_wireless.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/smoketest/scripts/cli/test_interfaces_wireless.py b/smoketest/scripts/cli/test_interfaces_wireless.py index 575dd12e9..421ca7861 100755 --- a/smoketest/scripts/cli/test_interfaces_wireless.py +++ b/smoketest/scripts/cli/test_interfaces_wireless.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2020-2023 VyOS maintainers and contributors +# Copyright (C) 2020-2024 VyOS maintainers and contributors # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 or later as @@ -166,7 +166,6 @@ class WirelessInterfaceTest(BasicInterfaceTest.TestCase): antennas = '3' self.cli_set(self._base_path + [interface, 'ssid', ssid]) - self.cli_set(self._base_path + [interface, 'country-code', 'se']) self.cli_set(self._base_path + [interface, 'type', 'access-point']) self.cli_set(self._base_path + [interface, 'channel', '36']) @@ -236,7 +235,6 @@ class WirelessInterfaceTest(BasicInterfaceTest.TestCase): antennas = '3' self.cli_set(self._base_path + [interface, 'ssid', ssid]) - self.cli_set(self._base_path + [interface, 'country-code', 'se']) self.cli_set(self._base_path + [interface, 'type', 'access-point']) self.cli_set(self._base_path + [interface, 'channel', '36']) |