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

split: fix formatting

This commit is contained in:
Daniel Hofstetter 2023-09-13 10:45:38 +02:00
parent d4217c5a12
commit aa7b39ae49
2 changed files with 3 additions and 3 deletions

View file

@ -306,8 +306,7 @@ fn test_filter_broken_pipe() {
let name = "filter-big-input";
RandomFile::new(&at, name).add_lines(1024 * 10);
ucmd
.args(&["--filter=head -c1 > /dev/null", "-n", "r/1", name])
ucmd.args(&["--filter=head -c1 > /dev/null", "-n", "r/1", name])
.succeeds();
}