aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/vty_test_runner.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/vty_test_runner.py b/tests/vty_test_runner.py
index 1727e5308..3ecfd3987 100644
--- a/tests/vty_test_runner.py
+++ b/tests/vty_test_runner.py
@@ -139,14 +139,6 @@ class TestVTYBSC(TestVTYGenericBSC):
self.assertTrue(self.vty.verify("exit", ['']))
self.assertTrue(self.vty.node() is None)
- # Check searching for outer node's commands
- self.vty.command("configure terminal")
- self.vty.command('msc 0')
- self.vty.command("bsc")
- self.assertEquals(self.vty.node(), 'config-bsc')
- self.vty.command("msc 0")
- self.assertEquals(self.vty.node(), 'config-msc')
-
def testUssdNotificationsMsc(self):
self.vty.enable()
self.vty.command("configure terminal")
@@ -249,7 +241,6 @@ class TestVTYBSC(TestVTYGenericBSC):
def testPingPongConfiguration(self):
self.vty.enable()
self.vty.verify("configure terminal", [''])
- self.vty.verify("network", [''])
self.vty.verify("msc 0", [''])
self.vty.verify("timeout-ping 12", [''])
@@ -390,19 +381,6 @@ class TestVTYNAT(TestVTYGenericBSC):
self.assertTrue(self.vty.verify('exit', ['']))
self.assertTrue(self.vty.node() is None)
- # Check searching for outer node's commands
- self.vty.command('configure terminal')
- self.vty.command('mgcp')
- self.vty.command('nat')
- self.assertEquals(self.vty.node(), 'config-nat')
- self.vty.command('mgcp')
- self.assertEquals(self.vty.node(), 'config-mgcp')
- self.vty.command('nat')
- self.assertEquals(self.vty.node(), 'config-nat')
- self.vty.command('bsc 0')
- self.vty.command('mgcp')
- self.assertEquals(self.vty.node(), 'config-mgcp')
-
def testRewriteNoRewrite(self):
self.vty.enable()
res = self.vty.command("configure terminal")