Skip to content

Commit ba3b349

Browse files
authored
RUST-1448 Unskip ChangeStream load balancer tests (#736)
1 parent 00d0846 commit ba3b349

File tree

1 file changed

+2
-12
lines changed

1 file changed

+2
-12
lines changed

src/test/spec/load_balancers.rs

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,15 @@ use std::path::PathBuf;
33
use tokio::sync::RwLockWriteGuard;
44

55
use crate::test::{
6-
log_uncaptured,
76
run_spec_test_with_path,
87
spec::{
8+
run_unified_format_test,
99
unified_runner::{ExpectedCmapEvent, ExpectedEvent, TestFile},
1010
ExpectedEventType,
1111
},
1212
LOCK,
1313
};
1414

15-
use super::run_unified_format_test_filtered;
16-
1715
#[cfg_attr(feature = "tokio-runtime", tokio::test(flavor = "multi_thread"))]
1816
#[cfg_attr(feature = "async-std-runtime", async_std::test)]
1917
async fn run() {
@@ -42,15 +40,7 @@ async fn run() {
4240
}
4341
}
4442
}
45-
run_unified_format_test_filtered(path, test_file, |tc| {
46-
// TODO RUST-142 unskip this when change streams are implemented.
47-
if tc.description == "change streams pin to a connection" {
48-
log_uncaptured("skipping due to change streams not being implemented");
49-
return false;
50-
}
51-
true
52-
})
53-
.await;
43+
run_unified_format_test(path, test_file).await;
5444
}
5545
let _guard: RwLockWriteGuard<()> = LOCK.run_exclusively().await;
5646
run_spec_test_with_path(&["load-balancers"], run_test).await;

0 commit comments

Comments
 (0)