diff --git a/src/sonic-config-engine/tests/test_cfggen.py b/src/sonic-config-engine/tests/test_cfggen.py index a3b6e784d075..29773dffc628 100644 --- a/src/sonic-config-engine/tests/test_cfggen.py +++ b/src/sonic-config-engine/tests/test_cfggen.py @@ -709,7 +709,7 @@ def test_minigraph_bgp_voq_chassis_peer(self): def test_minigraph_sub_port_interfaces(self, check_stderr=True): self.verify_sub_intf(check_stderr=check_stderr) - def test_minigraph_sub_port_intf_resource_non_backend_tor(self, check_stderr=True): + def test_minigraph_sub_port_intf_resource_type_non_backend_tor(self, check_stderr=True): self.verify_sub_intf_non_backend_tor(graph_file=self.sample_resource_graph, check_stderr=check_stderr) def test_minigraph_sub_port_intf_resource_type(self, check_stderr=True): @@ -748,16 +748,6 @@ def verify_no_vlan_member(self): def verify_sub_intf_non_backend_tor(self, **kwargs): graph_file = kwargs.get('graph_file', self.sample_graph_simple) - # INTERFACE table does not exist - # argument = '-m "' + graph_file + '" -p "' + self.port_config + '" -v "INTERFACE"' - # output = self.run_script(argument) - # self.assertEqual(output.strip(), "") - - # PORTCHANNEL_INTERFACE table does not exist - # argument = '-m "' + graph_file + '" -p "' + self.port_config + '" -v "PORTCHANNEL_INTERFACE"' - # output = self.run_script(argument) - # self.assertEqual(output.strip(), "") - # All the other tables stay unchanged self.test_var_json_data(graph_file=graph_file) self.test_minigraph_vlans(graph_file=graph_file)