1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-27 19:17:43 +00:00

Merge pull request #1499 from rivy/fix.style-cat

refact/cat ~ fix style issues
This commit is contained in:
Roy Ivy III 2020-05-04 13:36:07 -05:00 committed by GitHub
commit 94aa201ee5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -463,8 +463,9 @@ fn write_nonprint_to_end<W: Write>(in_buf: &[u8], writer: &mut W, tab: &[u8]) ->
} }
} }
#[test]
mod tests { mod tests {
use std::io::{BufWriter, stdout}; use std::io::{stdout, BufWriter};
#[test] #[test]
fn test_write_nonprint_to_end_new_line() { fn test_write_nonprint_to_end_new_line() {