aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_tls.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_tls.py')
-rw-r--r--test/test_tls.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_tls.py b/test/test_tls.py
index 008664dfd7a..2f8edd4e0e2 100644
--- a/test/test_tls.py
+++ b/test/test_tls.py
@@ -65,7 +65,7 @@ class TestTLS(VppTestCase):
def setUp(self):
super(TestTLS, self).setUp()
- self.vapi.session_enable_disable(is_enabled=1)
+ self.vapi.session_enable_disable(is_enable=1)
self.create_loopback_interfaces(2)
table_id = 0
@@ -92,7 +92,7 @@ class TestTLS(VppTestCase):
i.unconfig_ip4()
i.set_table_ip4(0)
i.admin_down()
- self.vapi.session_enable_disable(is_enabled=0)
+ self.vapi.session_enable_disable(is_enable=0)
super(TestTLS, self).tearDown()
@unittest.skipUnless(checkAll(),