We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e481c9 commit d3c86c2Copy full SHA for d3c86c2
src/client/options/mod.rs
@@ -1234,16 +1234,13 @@ impl ClientOptions {
1234
server_api,
1235
server_selection_timeout,
1236
socket_timeout,
1237
+ test_options,
1238
tls,
1239
write_concern,
1240
original_srv_info,
1241
original_uri
1242
]
1243
);
- #[cfg(test)]
1244
- {
1245
- merge_options!(other, self, [test_options]);
1246
- }
1247
}
1248
1249
#[cfg(test)]
src/test/spec/retryable_writes/mod.rs
@@ -180,7 +180,7 @@ async fn run_spec_tests() {
180
.unwrap();
181
182
183
- let _ = client.database(&db_name).drop(None).await;
+ client.database(&db_name).drop(None).await.unwrap();
184
185
186
0 commit comments