File tree Expand file tree Collapse file tree 1 file changed +2
-12
lines changed Expand file tree Collapse file tree 1 file changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -3,17 +3,15 @@ use std::path::PathBuf;
3
3
use tokio:: sync:: RwLockWriteGuard ;
4
4
5
5
use crate :: test:: {
6
- log_uncaptured,
7
6
run_spec_test_with_path,
8
7
spec:: {
8
+ run_unified_format_test,
9
9
unified_runner:: { ExpectedCmapEvent , ExpectedEvent , TestFile } ,
10
10
ExpectedEventType ,
11
11
} ,
12
12
LOCK ,
13
13
} ;
14
14
15
- use super :: run_unified_format_test_filtered;
16
-
17
15
#[ cfg_attr( feature = "tokio-runtime" , tokio:: test( flavor = "multi_thread" ) ) ]
18
16
#[ cfg_attr( feature = "async-std-runtime" , async_std:: test) ]
19
17
async fn run ( ) {
@@ -42,15 +40,7 @@ async fn run() {
42
40
}
43
41
}
44
42
}
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 ;
54
44
}
55
45
let _guard: RwLockWriteGuard < ( ) > = LOCK . run_exclusively ( ) . await ;
56
46
run_spec_test_with_path ( & [ "load-balancers" ] , run_test) . await ;
You can’t perform that action at this time.
0 commit comments