Skip to content

Commit

Permalink
Remove unrelated change
Browse files Browse the repository at this point in the history
  • Loading branch information
bkchr committed Jun 23, 2022
1 parent 930a844 commit 9d1a308
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tracing-log/src/interest_cache.rs
Expand Up @@ -235,7 +235,7 @@ mod tests {

fn lock_for_test() -> impl Drop {
// We need to make sure only one test runs at a time.
static LOCK: Lazy<Mutex<()>> = Lazy::new(|| Mutex::new(()));
static LOCK: Lazy<Mutex<()>> = Lazy::new(Mutex::new);

match LOCK.lock() {
Ok(guard) => guard,
Expand Down

0 comments on commit 9d1a308

Please sign in to comment.