forgot the unit test. or at least couldn't find it originally.

This commit is contained in:
Thomas Phipps 2015-06-24 17:09:13 -07:00
parent 314ebcc2a7
commit 09ed674491

View File

@ -121,11 +121,11 @@ class MockNeutron(object):
return network return network
@staticmethod @staticmethod
def create_network(name, router_ext): def create_network(name, admin_state_up, router_ext, network_type, physical_network, segmentation_id, shared):
""" """
Mock of create_network method Mock of create_network method
""" """
return (name, router_ext) return (name, admin_state_up, router_ext, network_type, physical_network, segmentation_id, shared)
@staticmethod @staticmethod
def update_network(network, name): def update_network(network, name):