1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 03:27:44 +00:00

chroot: fix unused import on Android

This commit is contained in:
Miles Liu 2023-03-22 12:02:01 +08:00
parent 0e4a15aa61
commit 2bcdae124c
No known key found for this signature in database
GPG key ID: 4DB9B32F9B24A7A9

View file

@ -1,6 +1,8 @@
// spell-checker:ignore (words) araba newroot userspec chdir pwd's isroot // spell-checker:ignore (words) araba newroot userspec chdir pwd's isroot
use crate::common::util::{is_ci, run_ucmd_as_root, TestScenario}; #[cfg(not(target_os = "android"))]
use crate::common::util::is_ci;
use crate::common::util::{run_ucmd_as_root, TestScenario};
#[test] #[test]
fn test_invalid_arg() { fn test_invalid_arg() {