summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2020-04-04 20:36:39 +0200
committerChristian Poessinger <christian@poessinger.com>2020-04-04 20:36:39 +0200
commitc26648b99c9a5e7019294dbd2e0a6a3c23f9f85a (patch)
treebd24b79d7cf103cbf94b22efaa43c2b72c1ba550
parent653b063ca2e755c788b73940470f4abbdf223eec (diff)
downloadvyos-1x-c26648b99c9a5e7019294dbd2e0a6a3c23f9f85a.tar.gz
vyos-1x-c26648b99c9a5e7019294dbd2e0a6a3c23f9f85a.zip
pppoe: T2219: default route now implemented via ip-up script
-rwxr-xr-xscripts/cli/test_interfaces_pppoe.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/scripts/cli/test_interfaces_pppoe.py b/scripts/cli/test_interfaces_pppoe.py
index 714e3e739..9a9a1512c 100755
--- a/scripts/cli/test_interfaces_pppoe.py
+++ b/scripts/cli/test_interfaces_pppoe.py
@@ -74,13 +74,11 @@ class PPPoEInterfaceTest(unittest.TestCase):
cur_mtu = get_config_value(interface, 'mtu')[1]
cur_user = get_config_value(interface, 'user')[1].replace('"', '')
cur_password = get_config_value(interface, 'password')[1].replace('"', '')
- cur_default_route = get_config_value(interface, 'defaultroute')[0]
cur_ifname = get_config_value(interface, 'ifname')[1]
self.assertTrue(cur_mtu == '1400')
self.assertTrue(cur_user == user)
self.assertTrue(cur_password == password)
- self.assertTrue(cur_default_route == 'defaultroute')
self.assertTrue(cur_ifname == interface)
# Check if ppp process is running in the interface in question