@@ -104,7 +104,7 @@ async fn test_ip_pool_basic_crud(cptestctx: &ControlPlaneTestContext) {
104104 description : String :: from ( description) ,
105105 } ,
106106 silo : None ,
107- default : false ,
107+ is_default : false ,
108108 } ;
109109 let created_pool: IpPool =
110110 NexusRequest :: objects_post ( client, ip_pools_url, & params)
@@ -284,7 +284,7 @@ async fn test_ip_pool_with_silo(cptestctx: &ControlPlaneTestContext) {
284284 description : String :: from ( "" ) ,
285285 } ,
286286 silo : Some ( NameOrId :: Name ( cptestctx. silo_name . clone ( ) ) ) ,
287- default : false ,
287+ is_default : false ,
288288 } ;
289289 let created_pool = create_pool ( client, & params) . await ;
290290 assert_eq ! ( created_pool. identity. name, "p0" ) ;
@@ -299,7 +299,7 @@ async fn test_ip_pool_with_silo(cptestctx: &ControlPlaneTestContext) {
299299 description : String :: from ( "" ) ,
300300 } ,
301301 silo : Some ( NameOrId :: Id ( silo_id) ) ,
302- default : false ,
302+ is_default : false ,
303303 } ;
304304 let created_pool = create_pool ( client, & params) . await ;
305305 assert_eq ! ( created_pool. identity. name, "p1" ) ;
@@ -314,7 +314,7 @@ async fn test_ip_pool_with_silo(cptestctx: &ControlPlaneTestContext) {
314314 silo : Some ( NameOrId :: Name (
315315 String :: from ( "not-a-thing" ) . parse ( ) . unwrap ( ) ,
316316 ) ) ,
317- default : false ,
317+ is_default : false ,
318318 } ;
319319 let error: HttpErrorResponseBody = NexusRequest :: new (
320320 RequestBuilder :: new ( client, Method :: POST , "/v1/system/ip-pools" )
@@ -373,7 +373,7 @@ async fn test_ip_pool_range_overlapping_ranges_fails(
373373 description : String :: from ( description) ,
374374 } ,
375375 silo : None ,
376- default : false ,
376+ is_default : false ,
377377 } ;
378378 let created_pool: IpPool =
379379 NexusRequest :: objects_post ( client, ip_pools_url, & params)
@@ -556,7 +556,7 @@ async fn test_ip_pool_range_pagination(cptestctx: &ControlPlaneTestContext) {
556556 description : String :: from ( description) ,
557557 } ,
558558 silo : None ,
559- default : false ,
559+ is_default : false ,
560560 } ;
561561 let created_pool: IpPool =
562562 NexusRequest :: objects_post ( client, ip_pools_url, & params)
@@ -694,7 +694,7 @@ async fn test_ip_pool_list_usable_by_project(
694694 description : String :: from ( "right on cue" ) ,
695695 } ,
696696 silo : None ,
697- default : false ,
697+ is_default : false ,
698698 } ;
699699 NexusRequest :: objects_post ( client, ip_pools_url, & params)
700700 . authn_as ( AuthnMode :: PrivilegedUser )
0 commit comments