Diffstat (limited to 'tests/common/mod.rs')
| -rw-r--r-- | tests/common/mod.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/common/mod.rs b/tests/common/mod.rs index 5c714e1..a856898 100644 --- a/tests/common/mod.rs +++ b/tests/common/mod.rs @@ -9,7 +9,9 @@ use std::{ sync::{Mutex, MutexGuard, OnceLock, RwLock}, }; -use treaty::effect::blocking::Spin; +use effectful::{block_on::Spin, blocking::Blocking as Block, bound::No, environment::Cfg}; + +pub type Blocking = Block<Cfg<Spin, No, No>>; pub mod builder; pub mod protocol; |