@@ -984,7 +984,7 @@ mod tests {
984984 . await
985985 . unwrap( ) ;
986986
987- let instance = crate :: v1:: testing:: instance( ) . await ;
987+ let instance = $ crate:: v1:: testing:: instance( ) . await ;
988988 let proc_mesh = ProcMesh :: allocate( alloc) . await . unwrap( ) ;
989989 let ( undeliverable_tx, _undeliverable_rx) = proc_mesh. client( ) . open_port( ) ;
990990 let params = PingPongActorParams :: new( Some ( undeliverable_tx. bind( ) ) , None ) ;
@@ -1030,7 +1030,7 @@ mod tests {
10301030 . await
10311031 . unwrap( ) ;
10321032
1033- let instance = crate :: v1:: testing:: instance( ) . await ;
1033+ let instance = $ crate:: v1:: testing:: instance( ) . await ;
10341034 let proc_mesh = ProcMesh :: allocate( alloc) . await . unwrap( ) ;
10351035 let actor_mesh: RootActorMesh <TestActor > = proc_mesh. spawn( & instance, "echo" , & ( ) ) . await . unwrap( ) ;
10361036 let dont_simulate_error = true ;
@@ -1074,7 +1074,7 @@ mod tests {
10741074 . await
10751075 . unwrap( ) ;
10761076
1077- let instance = crate :: v1:: testing:: instance( ) . await ;
1077+ let instance = $ crate:: v1:: testing:: instance( ) . await ;
10781078 let proc_mesh = ProcMesh :: allocate( alloc) . await . unwrap( ) ;
10791079 let actor_mesh: RootActorMesh <TestActor > = proc_mesh. spawn( & instance, "echo" , & ( ) ) . await . unwrap( ) ;
10801080
@@ -1096,7 +1096,7 @@ mod tests {
10961096 #[ tokio:: test]
10971097 async fn test_inter_proc_mesh_comms( ) {
10981098 let mut meshes = Vec :: new( ) ;
1099- let instance = crate :: v1:: testing:: instance( ) . await ;
1099+ let instance = $ crate:: v1:: testing:: instance( ) . await ;
11001100 for _ in 0 ..2 {
11011101 let alloc = $allocator
11021102 . allocate( AllocSpec {
@@ -1157,7 +1157,7 @@ mod tests {
11571157 . await
11581158 . unwrap( ) ;
11591159
1160- let instance = crate :: v1:: testing:: instance( ) . await ;
1160+ let instance = $ crate:: v1:: testing:: instance( ) . await ;
11611161 let mut proc_mesh = ProcMesh :: allocate( alloc) . await . unwrap( ) ;
11621162
11631163 let ( tx, mut rx) = hyperactor:: mailbox:: open_port( proc_mesh. client( ) ) ;
@@ -1220,7 +1220,7 @@ mod tests {
12201220 . await
12211221 . unwrap( ) ;
12221222
1223- let instance = crate :: v1:: testing:: instance( ) . await ;
1223+ let instance = $ crate:: v1:: testing:: instance( ) . await ;
12241224 let mesh = ProcMesh :: allocate( alloc) . await . unwrap( ) ;
12251225 let ( reply_port_handle, mut reply_port_receiver) = mesh. client( ) . open_port:: <usize >( ) ;
12261226 let reply_port = reply_port_handle. bind( ) ;
0 commit comments