diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-04-05 15:03:52 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-04-05 15:03:52 +0200 |
commit | b2da290cdce8d5a9cd1fd964f4583b1a2c34c9f2 (patch) | |
tree | e72225ec74450b7258b2f3bfb43e510e4e0074c4 | |
parent | dc36efc4d70e861d9adcfdcb2865706ac7f32e0f (diff) | |
download | vyos-1x-b2da290cdce8d5a9cd1fd964f4583b1a2c34c9f2.tar.gz vyos-1x-b2da290cdce8d5a9cd1fd964f4583b1a2c34c9f2.zip |
wifi: remove superfluous inherited tests
-rwxr-xr-x | scripts/cli/test_interfaces_wireless.py | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/scripts/cli/test_interfaces_wireless.py b/scripts/cli/test_interfaces_wireless.py index cefe0e323..8693f77e2 100755 --- a/scripts/cli/test_interfaces_wireless.py +++ b/scripts/cli/test_interfaces_wireless.py @@ -32,23 +32,6 @@ class WirelessInterfaceTest(BasicInterfaceTest.BaseTest): 'wlan11': ['physical-device phy1'], } - def test_add_description(self): - """ - A physical interface is mandatory thus we overwrite this function. - """ - for intf in self._interfaces: - self.session.set(self._base_path + [intf, 'physical-device', 'phy0']) - - super.test_add_description() - - def test_add_address(self): - """ - A physical interface is mandatory thus we overwrite this function. - """ - for intf in self._interfaces: - self.session.set(self._base_path + [intf, 'physical-device', 'phy0']) - - super.test_add_address() if __name__ == '__main__': os.system("modprobe mac80211_hwsim") |