@@ -146,6 +146,7 @@ async fn test_instances_create_reboot_halt(
146146 hostname : instance. hostname . clone ( ) ,
147147 network_interfaces :
148148 params:: InstanceNetworkInterfaceAttachment :: Default ,
149+ disks : vec ! [ ] ,
149150 } ) )
150151 . expect_status ( Some ( StatusCode :: BAD_REQUEST ) ) ,
151152 )
@@ -577,6 +578,7 @@ async fn test_instance_with_single_explicit_ip_address(
577578 memory : ByteCount :: from_mebibytes_u32 ( 4 ) ,
578579 hostname : String :: from ( "nic-test" ) ,
579580 network_interfaces : interface_params,
581+ disks : vec ! [ ] ,
580582 } ;
581583 let response =
582584 NexusRequest :: objects_post ( client, & url_instances, & instance_params)
@@ -692,6 +694,7 @@ async fn test_instance_with_new_custom_network_interfaces(
692694 memory : ByteCount :: from_mebibytes_u32 ( 4 ) ,
693695 hostname : String :: from ( "nic-test" ) ,
694696 network_interfaces : interface_params,
697+ disks : vec ! [ ] ,
695698 } ;
696699 let response =
697700 NexusRequest :: objects_post ( client, & url_instances, & instance_params)
@@ -784,6 +787,7 @@ async fn test_instance_create_delete_network_interface(
784787 memory : ByteCount :: from_mebibytes_u32 ( 4 ) ,
785788 hostname : String :: from ( "nic-test" ) ,
786789 network_interfaces : params:: InstanceNetworkInterfaceAttachment :: None ,
790+ disks : vec ! [ ] ,
787791 } ;
788792 let response =
789793 NexusRequest :: objects_post ( client, & url_instances, & instance_params)
@@ -966,6 +970,7 @@ async fn test_instance_with_multiple_nics_unwinds_completely(
966970 memory : ByteCount :: from_mebibytes_u32 ( 4 ) ,
967971 hostname : String :: from ( "nic-test" ) ,
968972 network_interfaces : interface_params,
973+ disks : vec ! [ ] ,
969974 } ;
970975 let builder =
971976 RequestBuilder :: new ( client, http:: Method :: POST , & url_instances)
0 commit comments