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

Merge pull request #5723 from sylvestre/tee-warning

tee test: fix a warning on not(linux)
This commit is contained in:
Daniel Hofstetter 2023-12-25 11:47:13 +01:00 committed by GitHub
commit 863c022352
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,6 +3,7 @@
// For the full copyright and license information, please view the LICENSE // For the full copyright and license information, please view the LICENSE
// file that was distributed with this source code. // file that was distributed with this source code.
use crate::common::util::TestScenario; use crate::common::util::TestScenario;
#[cfg(target_os = "linux")]
use std::fmt::Write; use std::fmt::Write;
// tests for basic tee functionality. // tests for basic tee functionality.