diff --git a/tests/adapters/switches/juniper_qfx_copper_test.py b/tests/adapters/switches/juniper_qfx_copper_test.py index 70e7ba6e..7cf9da98 100644 --- a/tests/adapters/switches/juniper_qfx_copper_test.py +++ b/tests/adapters/switches/juniper_qfx_copper_test.py @@ -211,54 +211,6 @@ def test_port_mode_access_with_no_port_mode_or_vlan_set_just_sets_the_port_mode( self.switch.set_access_mode("ge-0/0/6") - def test_remove_bond_delete_slaves_and_interface_at_same_time(self): - with self.expecting_successful_transaction(): - - self.netconf_mock.should_receive("get_config").with_args(source="candidate", filter=is_xml(""" - - - - - - """)).and_return(a_configuration(""" - - - ae10 - - - ge-0/0/1 - - - - ae10 - - - - - ge-0/0/2 - - - """)) - - self.netconf_mock.should_receive("edit_config").once().with_args(target="candidate", config=is_xml(""" - - - - - ae10 - - - ge-0/0/1 - - - - - - - """)).and_return(an_ok_response()) - - self.switch.remove_bond(10) - def test_add_interface_to_bond(self): with self.expecting_successful_transaction():