mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-11-28 23:14:12 +03:00
Don't unwrap mutex lock in headless testing
We don't worry about poisoning and it causes too many test failures if it's turned on!
This commit is contained in:
parent
2b5dd430a8
commit
ade4561eba
@ -677,7 +677,7 @@ impl Project {
|
||||
lazy_static! {
|
||||
static ref MUTEX: Mutex<()> = Mutex::new(());
|
||||
}
|
||||
let _lock = MUTEX.lock().unwrap();
|
||||
let _lock = MUTEX.lock();
|
||||
|
||||
let mut cmd = self.npm();
|
||||
cmd.arg("run")
|
||||
|
Loading…
Reference in New Issue
Block a user