summaryrefslogtreecommitdiff
path: root/smoketest/scripts/cli/test_vrf.py
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2023-08-07 13:31:27 +0200
committerChristian Breunig <christian@breunig.cc>2023-08-07 13:31:27 +0200
commita7898fdc0da81539a6b7ed5bdf8f32750b3db33e (patch)
tree89075c589094dba91cb4af991c4c0b4c19f926d4 /smoketest/scripts/cli/test_vrf.py
parent710dac553fac93d8a205c9bc7e6b116753ac0b34 (diff)
downloadvyos-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_vrf.py')
-rwxr-xr-xsmoketest/scripts/cli/test_vrf.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/smoketest/scripts/cli/test_vrf.py b/smoketest/scripts/cli/test_vrf.py
index b4faac67d..5fb599a87 100755
--- a/smoketest/scripts/cli/test_vrf.py
+++ b/smoketest/scripts/cli/test_vrf.py
@@ -47,9 +47,8 @@ class VRFTest(VyOSUnitTestSHIM.TestCase):
tmp = os.environ['TEST_ETH'].split()
cls._interfaces = tmp
else:
- for tmp in Section.interfaces('ethernet'):
- if not '.' in tmp:
- cls._interfaces.append(tmp)
+ for tmp in Section.interfaces('ethernet', vlan=False):
+ cls._interfaces.append(tmp)
# call base-classes classmethod
super(VRFTest, cls).setUpClass()