@@ -1230,7 +1230,8 @@ mod tests {
12301230 } ;
12311231 use crate :: tablet:: { TabletClient , TabletNode } ;
12321232
1233- #[ test_log:: test( tokio:: test) ]
1233+ #[ tokio:: test]
1234+ #[ test_log:: test]
12341235 #[ tracing_test:: traced_test]
12351236 async fn test_tablet_client_basic ( ) {
12361237 let etcd = etcd_container ( ) ;
@@ -1287,7 +1288,8 @@ mod tests {
12871288 assert_that ! ( client. find( b"kz" ) . await . unwrap( ) . is_none( ) ) . is_true ( ) ;
12881289 }
12891290
1290- #[ test_log:: test( tokio:: test) ]
1291+ #[ tokio:: test]
1292+ #[ test_log:: test]
12911293 #[ tracing_test:: traced_test]
12921294 async fn test_tablet_client_batch ( ) {
12931295 let etcd = etcd_container ( ) ;
@@ -1368,7 +1370,8 @@ mod tests {
13681370 assert_that ! ( get. value. unwrap( ) ) . is_equal_to ( & expect_value) ;
13691371 }
13701372
1371- #[ test_log:: test( tokio:: test) ]
1373+ #[ tokio:: test]
1374+ #[ test_log:: test]
13721375 #[ tracing_test:: traced_test]
13731376 async fn test_tablet_client_find_timestamped ( ) {
13741377 let etcd = etcd_container ( ) ;
@@ -1416,7 +1419,8 @@ mod tests {
14161419 assert_that ! ( find1. value. unwrap( ) . value) . is_equal_to ( Value :: Int ( 10 ) ) ;
14171420 }
14181421
1419- #[ test_log:: test( tokio:: test) ]
1422+ #[ tokio:: test]
1423+ #[ test_log:: test]
14201424 #[ tracing_test:: traced_test]
14211425 async fn test_tablet_client_scan_timestamped ( ) {
14221426 let etcd = etcd_container ( ) ;
@@ -1472,7 +1476,8 @@ mod tests {
14721476 assert_that ! ( scan. rows[ 1 ] . value) . is_equal_to ( Value :: Int ( 10 ) ) ;
14731477 }
14741478
1475- #[ test_log:: test( tokio:: test) ]
1479+ #[ tokio:: test]
1480+ #[ test_log:: test]
14761481 #[ tracing_test:: traced_test]
14771482 async fn test_tablet_client_scan_transactional ( ) {
14781483 let etcd = etcd_container ( ) ;
@@ -1544,7 +1549,8 @@ mod tests {
15441549 assert_that ! ( scan. rows[ 1 ] . value) . is_equal_to ( Value :: Int ( 10 ) ) ;
15451550 }
15461551
1547- #[ test_log:: test( tokio:: test) ]
1552+ #[ tokio:: test]
1553+ #[ test_log:: test]
15481554 #[ tracing_test:: traced_test]
15491555 async fn tablet_client_transactional_read_your_write ( ) {
15501556 let etcd = etcd_container ( ) ;
@@ -1605,7 +1611,8 @@ mod tests {
16051611 assert_eq ! ( get. value. unwrap( ) . value, Value :: Int ( 5 ) ) ;
16061612 }
16071613
1608- #[ test_log:: test( tokio:: test) ]
1614+ #[ tokio:: test]
1615+ #[ test_log:: test]
16091616 #[ tracing_test:: traced_test]
16101617 async fn tablet_client_transactional_once ( ) {
16111618 let etcd = etcd_container ( ) ;
@@ -1661,7 +1668,8 @@ mod tests {
16611668 assert_eq ! ( value, Value :: String ( "v1_1" . to_owned( ) ) ) ;
16621669 }
16631670
1664- #[ test_log:: test( tokio:: test) ]
1671+ #[ tokio:: test]
1672+ #[ test_log:: test]
16651673 #[ tracing_test:: traced_test]
16661674 async fn tablet_client_transactional_stepped ( ) {
16671675 let etcd = etcd_container ( ) ;
@@ -1763,7 +1771,8 @@ mod tests {
17631771 }
17641772 }
17651773
1766- #[ test_log:: test( tokio:: test) ]
1774+ #[ tokio:: test]
1775+ #[ test_log:: test]
17671776 #[ tracing_test:: traced_test]
17681777 async fn tablet_client_transactional_resolve_committed ( ) {
17691778 let etcd = etcd_container ( ) ;
@@ -1894,7 +1903,8 @@ mod tests {
18941903 }
18951904 }
18961905
1897- #[ test_log:: test( tokio:: test) ]
1906+ #[ tokio:: test]
1907+ #[ test_log:: test]
18981908 #[ tracing_test:: traced_test]
18991909 async fn tablet_client_transactional_resolve_aborted ( ) {
19001910 let etcd = etcd_container ( ) ;
@@ -2024,7 +2034,8 @@ mod tests {
20242034 }
20252035 }
20262036
2027- #[ test_log:: test( tokio:: test) ]
2037+ #[ tokio:: test]
2038+ #[ test_log:: test]
20282039 #[ tracing_test:: traced_test]
20292040 async fn tablet_client_transactional_timeout_aborted ( ) {
20302041 let etcd = etcd_container ( ) ;
@@ -2122,7 +2133,8 @@ mod tests {
21222133 }
21232134 }
21242135
2125- #[ test_log:: test( tokio:: test) ]
2136+ #[ tokio:: test]
2137+ #[ test_log:: test]
21262138 #[ tracing_test:: traced_test]
21272139 async fn tablet_client_transactional_refresh_read ( ) {
21282140 let etcd = etcd_container ( ) ;
@@ -2269,7 +2281,8 @@ mod tests {
22692281 assert_that ! ( status. message( ) ) . contains ( "conflict with write to key" ) ;
22702282 }
22712283
2272- #[ test_log:: test( tokio:: test) ]
2284+ #[ tokio:: test]
2285+ #[ test_log:: test]
22732286 #[ tracing_test:: traced_test]
22742287 async fn tablet_client_transactional_deadlock ( ) {
22752288 let etcd = etcd_container ( ) ;
@@ -2436,7 +2449,8 @@ mod tests {
24362449 assert_eq ! ( value, Value :: Int ( 50 ) ) ;
24372450 }
24382451
2439- #[ test_log:: test( tokio:: test) ]
2452+ #[ tokio:: test]
2453+ #[ test_log:: test]
24402454 #[ tracing_test:: traced_test]
24412455 async fn tablet_client_write_beneath_closed_timestamp ( ) {
24422456 let etcd = etcd_container ( ) ;
@@ -2488,7 +2502,8 @@ mod tests {
24882502 assert_that ! ( response. into_put( ) . unwrap( ) . write_ts) . is_equal_to ( written_ts) ;
24892503 }
24902504
2491- #[ test_log:: test( tokio:: test) ]
2505+ #[ tokio:: test]
2506+ #[ test_log:: test]
24922507 #[ tracing_test:: traced_test]
24932508 async fn tablet_client_timestamped_write_push_forward ( ) {
24942509 let etcd = etcd_container ( ) ;
@@ -2601,7 +2616,8 @@ mod tests {
26012616 assert_that ! ( response. into_put( ) . unwrap( ) . write_ts) . is_equal_to ( written_ts) ;
26022617 }
26032618
2604- #[ test_log:: test( tokio:: test) ]
2619+ #[ tokio:: test]
2620+ #[ test_log:: test]
26052621 #[ tracing_test:: traced_test]
26062622 async fn tablet_client_transactional_write_push_forward ( ) {
26072623 let etcd = etcd_container ( ) ;
@@ -2698,7 +2714,8 @@ mod tests {
26982714 assert_that ! ( read_value. timestamp) . is_equal_to ( written_ts) ;
26992715 }
27002716
2701- #[ test_log:: test( tokio:: test) ]
2717+ #[ tokio:: test]
2718+ #[ test_log:: test]
27022719 #[ tracing_test:: traced_test]
27032720 async fn tablet_client_transactional_commit_push_forward ( ) {
27042721 let etcd = etcd_container ( ) ;
0 commit comments