From 215016f22da6fd5ce0924adb5fb8ded861ad6159 Mon Sep 17 00:00:00 2001 From: selldinesh Date: Fri, 15 Sep 2023 22:53:40 +0000 Subject: [PATCH] removing switch tunnel Signed-off-by: selldinesh --- tests/api/test_switch_tunnel.py | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 tests/api/test_switch_tunnel.py diff --git a/tests/api/test_switch_tunnel.py b/tests/api/test_switch_tunnel.py deleted file mode 100644 index a70f896b..00000000 --- a/tests/api/test_switch_tunnel.py +++ /dev/null @@ -1,29 +0,0 @@ -from pprint import pprint - - -class TestSaiSwitchTunnel: - # object with no parents - - def test_switch_tunnel_create(self, npu): - commands = [ - { - 'name': 'switch_tunnel_1', - 'op': 'create', - 'type': 'SAI_OBJECT_TYPE_SWITCH_TUNNEL', - 'attributes': [ - 'SAI_SWITCH_TUNNEL_ATTR_TUNNEL_TYPE', - 'SAI_TUNNEL_TYPE_IPINIP', - ], - } - ] - - results = [*npu.process_commands(commands)] - print('======= SAI commands RETURN values create =======') - pprint(results) - - def test_switch_tunnel_remove(self, npu): - commands = [{'name': 'switch_tunnel_1', 'op': 'remove'}] - - results = [*npu.process_commands(commands)] - print('======= SAI commands RETURN values remove =======') - pprint(results)