summaryrefslogtreecommitdiff
path: root/scripts/cli/base_interfaces_test.py
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2020-03-25 19:43:57 +0100
committerGitHub <noreply@github.com>2020-03-25 19:43:57 +0100
commit653b063ca2e755c788b73940470f4abbdf223eec (patch)
treeaf24cc429bb74b69bc8d580569d9270c1565cb2f /scripts/cli/base_interfaces_test.py
parentaedc1fcdd2d0656b1252ba6680b0158c7e7ee7af (diff)
parentc0b55338a9503a7db49690fca0ec028bb8683875 (diff)
downloadvyos-1x-653b063ca2e755c788b73940470f4abbdf223eec.tar.gz
vyos-1x-653b063ca2e755c788b73940470f4abbdf223eec.zip
Merge pull request #8 from thomas-mangin/master
ifconfig: replace list_interfaces_of_type by Interface.listing
Diffstat (limited to 'scripts/cli/base_interfaces_test.py')
-rw-r--r--scripts/cli/base_interfaces_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/cli/base_interfaces_test.py b/scripts/cli/base_interfaces_test.py
index 9fa0fb49e..1fa5472d5 100644
--- a/scripts/cli/base_interfaces_test.py
+++ b/scripts/cli/base_interfaces_test.py
@@ -18,7 +18,7 @@ import unittest
from vyos.configsession import ConfigSession
from netifaces import ifaddresses, AF_INET, AF_INET6
from vyos.validate import is_intf_addr_assigned, is_ipv6_link_local
-from vyos.interfaces import list_interfaces_of_type
+from vyos.ifconfig import Interface
class BasicInterfaceTest:
class BaseTest(unittest.TestCase):