@@ -131,7 +131,6 @@ def test_volume_create_min_options(self):
131131 imageRef = None ,
132132 source_volid = None ,
133133 consistencygroup_id = None ,
134- multiattach = False ,
135134 scheduler_hints = None ,
136135 )
137136
@@ -149,7 +148,6 @@ def test_volume_create_options(self):
149148 '--availability-zone' , self .new_volume .availability_zone ,
150149 '--consistency-group' , consistency_group .id ,
151150 '--hint' , 'k=v' ,
152- '--multi-attach' ,
153151 self .new_volume .name ,
154152 ]
155153 verifylist = [
@@ -159,7 +157,6 @@ def test_volume_create_options(self):
159157 ('availability_zone' , self .new_volume .availability_zone ),
160158 ('consistency_group' , consistency_group .id ),
161159 ('hint' , {'k' : 'v' }),
162- ('multi_attach' , True ),
163160 ('name' , self .new_volume .name ),
164161 ]
165162 parsed_args = self .check_parser (self .cmd , arglist , verifylist )
@@ -180,7 +177,6 @@ def test_volume_create_options(self):
180177 imageRef = None ,
181178 source_volid = None ,
182179 consistencygroup_id = consistency_group .id ,
183- multiattach = True ,
184180 scheduler_hints = {'k' : 'v' },
185181 )
186182
@@ -251,7 +247,6 @@ def test_volume_create_properties(self):
251247 imageRef = None ,
252248 source_volid = None ,
253249 consistencygroup_id = None ,
254- multiattach = False ,
255250 scheduler_hints = None ,
256251 )
257252
@@ -290,7 +285,6 @@ def test_volume_create_image_id(self):
290285 imageRef = image .id ,
291286 source_volid = None ,
292287 consistencygroup_id = None ,
293- multiattach = False ,
294288 scheduler_hints = None ,
295289 )
296290
@@ -329,7 +323,6 @@ def test_volume_create_image_name(self):
329323 imageRef = image .id ,
330324 source_volid = None ,
331325 consistencygroup_id = None ,
332- multiattach = False ,
333326 scheduler_hints = None ,
334327 )
335328
@@ -367,7 +360,6 @@ def test_volume_create_with_snapshot(self):
367360 imageRef = None ,
368361 source_volid = None ,
369362 consistencygroup_id = None ,
370- multiattach = False ,
371363 scheduler_hints = None ,
372364 )
373365
@@ -406,7 +398,6 @@ def test_volume_create_with_bootable_and_readonly(self):
406398 imageRef = None ,
407399 source_volid = None ,
408400 consistencygroup_id = None ,
409- multiattach = False ,
410401 scheduler_hints = None ,
411402 )
412403
@@ -449,7 +440,6 @@ def test_volume_create_with_nonbootable_and_readwrite(self):
449440 imageRef = None ,
450441 source_volid = None ,
451442 consistencygroup_id = None ,
452- multiattach = False ,
453443 scheduler_hints = None ,
454444 )
455445
@@ -501,7 +491,6 @@ def test_volume_create_with_bootable_and_readonly_fail(
501491 imageRef = None ,
502492 source_volid = None ,
503493 consistencygroup_id = None ,
504- multiattach = False ,
505494 scheduler_hints = None ,
506495 )
507496
0 commit comments