@@ -5,7 +5,6 @@ pub struct GetConnectionStringOptions {
55 pub container_id_or_name : String ,
66 pub db_username : Option < String > ,
77 pub db_password : Option < String > ,
8- pub verify : Option < bool > ,
98}
109
1110impl From < GetConnectionStringOptions > for atlas_local:: models:: GetConnectionStringOptions {
@@ -14,7 +13,6 @@ impl From<GetConnectionStringOptions> for atlas_local::models::GetConnectionStri
1413 container_id_or_name : source. container_id_or_name ,
1514 db_username : source. db_username ,
1615 db_password : source. db_password ,
17- verify : source. verify ,
1816 }
1917 }
2018}
@@ -30,7 +28,6 @@ mod tests {
3028 container_id_or_name : "test_container" . into ( ) ,
3129 db_username : Some ( "test_user" . into ( ) ) ,
3230 db_password : Some ( "test_pass" . into ( ) ) ,
33- verify : Some ( true ) ,
3431 } ;
3532
3633 let get_connection_string_options: atlas_local:: models:: GetConnectionStringOptions =
@@ -48,6 +45,5 @@ mod tests {
4845 get_connection_string_options. db_password,
4946 Some ( "test_pass" . into( ) )
5047 ) ;
51- assert_eq ! ( get_connection_string_options. verify, Some ( true ) ) ;
5248 }
5349}
0 commit comments