diff options
Diffstat (limited to 'components/background_hang_monitor/tests/hang_monitor_tests.rs')
-rw-r--r-- | components/background_hang_monitor/tests/hang_monitor_tests.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/components/background_hang_monitor/tests/hang_monitor_tests.rs b/components/background_hang_monitor/tests/hang_monitor_tests.rs index b92344039bd..31ac269a8c1 100644 --- a/components/background_hang_monitor/tests/hang_monitor_tests.rs +++ b/components/background_hang_monitor/tests/hang_monitor_tests.rs @@ -4,9 +4,6 @@ #![allow(unused_imports)] -#[macro_use] -extern crate lazy_static; - use background_hang_monitor::HangMonitorRegister; use ipc_channel::ipc; use msg::constellation_msg::ScriptHangAnnotation; @@ -22,7 +19,7 @@ use std::sync::Mutex; use std::thread; use std::time::Duration; -lazy_static! { +lazy_static::lazy_static! { static ref SERIAL: Mutex<()> = Mutex::new(()); } |