1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 20:17:45 +00:00

Merge pull request #3113 from 353fc443/clippy-ocatal-escapes

Fix clippy octal-escapes warning
This commit is contained in:
Terts Diepraam 2022-02-11 15:21:47 +01:00 committed by GitHub
commit fd5906f581
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -128,9 +128,9 @@ fn test_complement() {
fn test_zero_terminated() {
new_ucmd!()
.args(&["-d_", "-z", "-f", "1"])
.pipe_in("9_1\n8_2\n\07_3")
.pipe_in("9_1\n8_2\n\x007_3")
.succeeds()
.stdout_only("9\07\0");
.stdout_only("9\x007\0");
}
#[test]

View file

@ -220,9 +220,9 @@ fn test_zero_terminated() {
fn test_obsolete_extras() {
new_ucmd!()
.args(&["-5zv"])
.pipe_in("1\02\03\04\05\06")
.pipe_in("1\x002\x003\x004\x005\x006")
.succeeds()
.stdout_is("==> standard input <==\n1\02\03\04\05\0");
.stdout_is("==> standard input <==\n1\x002\x003\x004\x005\0");
}
#[test]