diff options
Diffstat (limited to 'scripts/cli/test_interfaces_pppoe.py')
-rwxr-xr-x | scripts/cli/test_interfaces_pppoe.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/scripts/cli/test_interfaces_pppoe.py b/scripts/cli/test_interfaces_pppoe.py index 9a9a1512c..0e19f514a 100755 --- a/scripts/cli/test_interfaces_pppoe.py +++ b/scripts/cli/test_interfaces_pppoe.py @@ -81,14 +81,5 @@ class PPPoEInterfaceTest(unittest.TestCase): self.assertTrue(cur_password == password) self.assertTrue(cur_ifname == interface) - # Check if ppp process is running in the interface in question - running = False - for p in process_iter(): - if "pppd" in p.name(): - if interface in p.cmdline(): - running = True - - self.assertTrue(running) - if __name__ == '__main__': unittest.main() |