summaryrefslogtreecommitdiff
path: root/smoketest/scripts/cli/test_service_pppoe-server.py
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2023-12-28 13:15:50 +0100
committerGitHub <noreply@github.com>2023-12-28 13:15:50 +0100
commit8b646ed2c745a725aa22ad49e7e373c9f5fb2245 (patch)
treebd187f673f0c498e9288b972f361fb567dcf17ee /smoketest/scripts/cli/test_service_pppoe-server.py
parente9310778ddb0118278396017026cb6fc1daff0c9 (diff)
parent09e0a2ca035ee39a68a510b28cc74560669d0420 (diff)
downloadvyos-1x-8b646ed2c745a725aa22ad49e7e373c9f5fb2245.tar.gz
vyos-1x-8b646ed2c745a725aa22ad49e7e373c9f5fb2245.zip
Merge pull request #2658 from aapostoliuk/T5801-circinus
T5801: Rewritten L2TP to get_config_dict
Diffstat (limited to 'smoketest/scripts/cli/test_service_pppoe-server.py')
-rwxr-xr-xsmoketest/scripts/cli/test_service_pppoe-server.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/smoketest/scripts/cli/test_service_pppoe-server.py b/smoketest/scripts/cli/test_service_pppoe-server.py
index 3001e71bf..fa3bb87db 100755
--- a/smoketest/scripts/cli/test_service_pppoe-server.py
+++ b/smoketest/scripts/cli/test_service_pppoe-server.py
@@ -195,12 +195,8 @@ class TestServicePPPoEServer(BasicAccelPPPTest.TestCase):
def test_accel_radius_authentication(self):
radius_called_sid = 'ifname:mac'
- radius_acct_interim_jitter = '9'
- radius_acct_interim_interval = '60'
self.set(['authentication', 'radius', 'called-sid-format', radius_called_sid])
- self.set(['authentication', 'radius', 'acct-interim-jitter', radius_acct_interim_jitter])
- self.set(['authentication', 'radius', 'accounting-interim-interval', radius_acct_interim_interval])
# run common tests
super().test_accel_radius_authentication()
@@ -211,8 +207,6 @@ class TestServicePPPoEServer(BasicAccelPPPTest.TestCase):
# Validate configuration
self.assertEqual(conf['pppoe']['called-sid'], radius_called_sid)
- self.assertEqual(conf['radius']['acct-interim-jitter'], radius_acct_interim_jitter)
- self.assertEqual(conf['radius']['acct-interim-interval'], radius_acct_interim_interval)
def test_pppoe_server_vlan(self):