aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2020-12-12 15:15:34 +0100
committerDaniel Willmann <dwillmann@sysmocom.de>2020-12-14 12:21:17 +0100
commitb6b2f14197ff9bf7850501e055e6ed79e6f722b7 (patch)
tree12316171072e4f36165d363618a7a1245d63530f /tests
parent959f77e34bc4ec2bb4707e5d86957ee47deea763 (diff)
gbproxy: rename vty command "show gbproxy ..." to "show gbproxy bvc ..."
we have other objects to show, and the orthogoanl way to do this is to rename the existing one. Change-Id: I7836a37533a2de81720acedda712d61f429df12c
Diffstat (limited to 'tests')
-rwxr-xr-xtests/vty_test_runner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/vty_test_runner.py b/tests/vty_test_runner.py
index be40abc7d..4fb67cb91 100755
--- a/tests/vty_test_runner.py
+++ b/tests/vty_test_runner.py
@@ -97,7 +97,7 @@ class TestVTYGbproxy(TestVTYBase):
res = self.vty.command("show ns")
self.assertTrue(res.find('UDP bind') >= 0)
- res = self.vty.command("show gbproxy bss stats")
+ res = self.vty.command("show gbproxy bvc bss stats")
self.assertTrue(res.find('GBProxy Global Statistics') >= 0)
def testVtyDeletePeer(self):