Delete tests.baremetal.util.new_bm_deployment()

The function is not used anymore. It creates an instance of
BareMetalDeployment, which was removed in c20110d1.

Change-Id: I40b634f8cf0d4369f09cb61aca6f95a059e85d6d
This commit is contained in:
Arata Notsu
2013-04-01 20:20:03 +09:00
parent e17a3d75d7
commit dc18e23901

View File

@@ -66,17 +66,3 @@ def new_bm_interface(**kwargs):
raise test.TestingException("unknown field: %s"
% ','.join(kwargs.keys()))
return x
def new_bm_deployment(**kwargs):
x = bm_models.BareMetalDeployment()
x.id = kwargs.pop('id', None)
x.key = kwargs.pop('key', None)
x.image_path = kwargs.pop('image_path', None)
x.pxe_config_path = kwargs.pop('pxe_config_path', None)
x.root_mb = kwargs.pop('root_mb', None)
x.swap_mb = kwargs.pop('swap_mb', None)
if len(kwargs) > 0:
raise test.TestingException("unknown field: %s"
% ','.join(kwargs.keys()))
return x