1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2026-01-17 02:31:02 +00:00

Merge pull request #3140 from DevSabb/fix-split-tests

fix failure in test_split
This commit is contained in:
Sylvestre Ledru 2022-02-15 10:22:30 +01:00 committed by GitHub
commit acc861541b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -463,7 +463,7 @@ fn test_split_number_with_io_blksize() {
assert_eq!(file_read("xab"), "fghij");
assert_eq!(file_read("xac"), "klmno");
assert_eq!(file_read("xad"), "pqrst");
assert_eq!(file_read("xae"), "uvwxyz");
assert_eq!(file_read("xae"), "uvwxyz\n");
}
#[test]