From 3a42ce30451022733d7593be6044e0238dcf60b3 Mon Sep 17 00:00:00 2001 From: selldinesh Date: Wed, 20 Sep 2023 23:58:33 +0000 Subject: [PATCH] resolving merge conflict Signed-off-by: selldinesh --- tests/api/test_dash_acl_group.py | 26 -------------------------- tests/api/test_eni.py | 26 -------------------------- 2 files changed, 52 deletions(-) delete mode 100644 tests/api/test_dash_acl_group.py delete mode 100644 tests/api/test_eni.py diff --git a/tests/api/test_dash_acl_group.py b/tests/api/test_dash_acl_group.py deleted file mode 100644 index 071c3c54..00000000 --- a/tests/api/test_dash_acl_group.py +++ /dev/null @@ -1,26 +0,0 @@ -from pprint import pprint - - -class TestSaiDashAclGroup: - # object with no attributes - - def test_dash_acl_group_create(self, npu): - commands = [ - { - 'name': 'dash_acl_group_1', - 'op': 'create', - 'type': 'SAI_OBJECT_TYPE_DASH_ACL_GROUP', - 'attributes': [], - } - ] - - results = [*npu.process_commands(commands)] - print('======= SAI commands RETURN values create =======') - pprint(results) - - def test_dash_acl_group_remove(self, npu): - commands = [{'name': 'dash_acl_group_1', 'op': 'remove'}] - - results = [*npu.process_commands(commands)] - print('======= SAI commands RETURN values remove =======') - pprint(results) diff --git a/tests/api/test_eni.py b/tests/api/test_eni.py deleted file mode 100644 index e1748159..00000000 --- a/tests/api/test_eni.py +++ /dev/null @@ -1,26 +0,0 @@ -from pprint import pprint - - -class TestSaiEni: - # object with no attributes - - def test_eni_create(self, npu): - commands = [ - { - 'name': 'eni_1', - 'op': 'create', - 'type': 'SAI_OBJECT_TYPE_ENI', - 'attributes': [], - } - ] - - results = [*npu.process_commands(commands)] - print('======= SAI commands RETURN values create =======') - pprint(results) - - def test_eni_remove(self, npu): - commands = [{'name': 'eni_1', 'op': 'remove'}] - - results = [*npu.process_commands(commands)] - print('======= SAI commands RETURN values remove =======') - pprint(results)