Skip to content

Commit 98eb397

Browse files
committed
Fix redundant import
1 parent 8653299 commit 98eb397

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/lib.rs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -496,13 +496,8 @@ const BACK_DIRTY_BIT: u8 = 0b100; // Bit set by producer to signal updates
496496
#[cfg(test)]
497497
mod tests {
498498
use super::{BufferIndex, SharedState, TripleBuffer, BACK_DIRTY_BIT, BACK_INDEX_MASK};
499-
500499
use std::{fmt::Debug, ops::Deref, sync::atomic::Ordering, thread, time::Duration};
501-
502-
use testbench::{
503-
self,
504-
race_cell::{RaceCell, Racey},
505-
};
500+
use testbench::race_cell::{RaceCell, Racey};
506501

507502
/// Check that triple buffers are properly initialized
508503
#[test]

0 commit comments

Comments
 (0)