@@ -5,7 +5,6 @@ pub struct GetConnectionStringOptions {
5
5
pub container_id_or_name : String ,
6
6
pub db_username : Option < String > ,
7
7
pub db_password : Option < String > ,
8
- pub verify : Option < bool > ,
9
8
}
10
9
11
10
impl From < GetConnectionStringOptions > for atlas_local:: models:: GetConnectionStringOptions {
@@ -14,7 +13,6 @@ impl From<GetConnectionStringOptions> for atlas_local::models::GetConnectionStri
14
13
container_id_or_name : source. container_id_or_name ,
15
14
db_username : source. db_username ,
16
15
db_password : source. db_password ,
17
- verify : source. verify ,
18
16
}
19
17
}
20
18
}
@@ -30,7 +28,6 @@ mod tests {
30
28
container_id_or_name : "test_container" . into ( ) ,
31
29
db_username : Some ( "test_user" . into ( ) ) ,
32
30
db_password : Some ( "test_pass" . into ( ) ) ,
33
- verify : Some ( true ) ,
34
31
} ;
35
32
36
33
let get_connection_string_options: atlas_local:: models:: GetConnectionStringOptions =
@@ -48,6 +45,5 @@ mod tests {
48
45
get_connection_string_options. db_password,
49
46
Some ( "test_pass" . into( ) )
50
47
) ;
51
- assert_eq ! ( get_connection_string_options. verify, Some ( true ) ) ;
52
48
}
53
49
}
0 commit comments