diff --git a/tests/avr/src/main.rs b/tests/avr/src/main.rs index dfbad583..7ae7198c 100644 --- a/tests/avr/src/main.rs +++ b/tests/avr/src/main.rs @@ -10,8 +10,6 @@ #[path = "../../api-test/src/helper.rs"] mod helper; -use core::sync::atomic::Ordering; - use portable_atomic::*; #[avr_device::entry] diff --git a/tests/gba/src/main.rs b/tests/gba/src/main.rs index 3ea161bb..54922b42 100644 --- a/tests/gba/src/main.rs +++ b/tests/gba/src/main.rs @@ -9,8 +9,6 @@ #[path = "../../api-test/src/helper.rs"] mod helper; -use core::sync::atomic::Ordering; - use gba::prelude::*; use portable_atomic::*; diff --git a/tests/no-std-qemu/src/main.rs b/tests/no-std-qemu/src/main.rs index a49e332d..8b639773 100644 --- a/tests/no-std-qemu/src/main.rs +++ b/tests/no-std-qemu/src/main.rs @@ -8,8 +8,6 @@ #[path = "../../api-test/src/helper.rs"] mod helper; -use core::sync::atomic::Ordering; - use portable_atomic::*; use semihosting::{print, println}; diff --git a/tests/xtensa/src/main.rs b/tests/xtensa/src/main.rs index 7b30b3e0..ef94a75e 100644 --- a/tests/xtensa/src/main.rs +++ b/tests/xtensa/src/main.rs @@ -9,8 +9,6 @@ #[path = "../../api-test/src/helper.rs"] mod helper; -use core::sync::atomic::Ordering; - use portable_atomic::*; use esp32_hal as _;