From 6184ecfdb5593648d88c6ec8e3a9da481ed957bf Mon Sep 17 00:00:00 2001 From: selldinesh Date: Mon, 18 Sep 2023 18:10:37 +0000 Subject: [PATCH] removing eni case Signed-off-by: selldinesh --- tests/api/test_eni.py | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 tests/api/test_eni.py 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)