diff options
author | Christian Breunig <christian@breunig.cc> | 2023-08-07 13:31:27 +0200 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2023-08-07 13:31:27 +0200 |
commit | a7898fdc0da81539a6b7ed5bdf8f32750b3db33e (patch) | |
tree | 89075c589094dba91cb4af991c4c0b4c19f926d4 /smoketest/scripts/cli/test_interfaces_bonding.py | |
parent | 710dac553fac93d8a205c9bc7e6b116753ac0b34 (diff) | |
download | vyos-1x-a7898fdc0da81539a6b7ed5bdf8f32750b3db33e.tar.gz vyos-1x-a7898fdc0da81539a6b7ed5bdf8f32750b3db33e.zip |
smoketest: make use of vlan=False API when calling Section.interfaces
Diffstat (limited to 'smoketest/scripts/cli/test_interfaces_bonding.py')
-rwxr-xr-x | smoketest/scripts/cli/test_interfaces_bonding.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/smoketest/scripts/cli/test_interfaces_bonding.py b/smoketest/scripts/cli/test_interfaces_bonding.py index d8e6bde5c..8867cb427 100755 --- a/smoketest/scripts/cli/test_interfaces_bonding.py +++ b/smoketest/scripts/cli/test_interfaces_bonding.py @@ -37,9 +37,8 @@ class BondingInterfaceTest(BasicInterfaceTest.TestCase): if 'TEST_ETH' in os.environ: cls._members = os.environ['TEST_ETH'].split() else: - for tmp in Section.interfaces('ethernet'): - if not '.' in tmp: - cls._members.append(tmp) + for tmp in Section.interfaces('ethernet', vlan=False): + cls._members.append(tmp) cls._options = {'bond0' : []} for member in cls._members: |