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

cksum: fixed test for --raw on single file

This commit is contained in:
D9nni 2024-01-08 15:50:25 +02:00
parent d72343bc64
commit 28b5224725
2 changed files with 2 additions and 1 deletions

View file

@ -294,7 +294,7 @@ fn test_raw_single_file() {
.arg("lorem_ipsum.txt")
.succeeds()
.no_stderr()
.stdout_is_fixture("raw_single_file.expected");
.stdout_is_fixture_bytes("raw_single_file.expected");
}
#[test]