diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-12-29 21:17:41 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-12-29 21:17:41 +0100 |
commit | d5e4561955b70c2e1f42aa988c6be86f2913c6bd (patch) | |
tree | 8d2cffe15797148018ecb05736de17f1201bb80a /smoketest/scripts/cli/test_interfaces_wireless.py | |
parent | d36063f837e7b015e8f9fc3a19832bc36bceb61a (diff) | |
download | vyos-1x-d5e4561955b70c2e1f42aa988c6be86f2913c6bd.tar.gz vyos-1x-d5e4561955b70c2e1f42aa988c6be86f2913c6bd.zip |
smoketest: interfaces: adjust to internal API changes
Commit 29e32d39 ("smoketest: T1466: add eapol tests") renamed interface
methods of class BasicInterfaceTest, those change was not reflected in
every derived class.
Diffstat (limited to 'smoketest/scripts/cli/test_interfaces_wireless.py')
-rwxr-xr-x | smoketest/scripts/cli/test_interfaces_wireless.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/smoketest/scripts/cli/test_interfaces_wireless.py b/smoketest/scripts/cli/test_interfaces_wireless.py index d2e35b6d8..111205866 100755 --- a/smoketest/scripts/cli/test_interfaces_wireless.py +++ b/smoketest/scripts/cli/test_interfaces_wireless.py @@ -48,9 +48,9 @@ class WirelessInterfaceTest(BasicInterfaceTest.BaseTest): } self._interfaces = list(self._options) - def test_add_address_single(self): + def test_add_single_ip_address(self): """ derived method to check if member interfaces are enslaved properly """ - super().test_add_address_single() + super().test_add_single_ip_address() for option, option_value in self._options.items(): if 'type access-point' in option_value: |