Skip to content

Commit 3e1c325

Browse files
Remove irrelevant test
1 parent bbb021e commit 3e1c325

File tree

1 file changed

+0
-22
lines changed

1 file changed

+0
-22
lines changed

test/unit/objects/linode_interface_test.py

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -285,28 +285,6 @@ def test_update_vpc(self):
285285
},
286286
}
287287

288-
def test_update_vlan(self):
289-
iface = LinodeInterface(self.client, 789, 124)
290-
291-
self.assert_linode_124_interface_789(iface)
292-
293-
iface.vlan.ipam_address = "10.0.0.2/24"
294-
iface.vlan.vlan_label = "my_vlan_updated"
295-
296-
with self.mock_put("/linode/instances/124/interfaces/789") as m:
297-
iface.save()
298-
299-
assert m.called
300-
301-
assert m.call_data == {
302-
# TODO (Enhanced Interfaces): Ensure this doesn't cause an API validation error.
303-
"default_route": {},
304-
"vlan": {
305-
"vlan_label": "my_vlan_updated",
306-
"ipam_address": "10.0.0.2/24",
307-
},
308-
}
309-
310288
def test_delete(self):
311289
iface = LinodeInterface(self.client, 123, 124)
312290

0 commit comments

Comments
 (0)