mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 11:37:44 +00:00
Fix clippy octal-escapes warning
This commit is contained in:
parent
080cb2b6f9
commit
c2bb9dd433
2 changed files with 4 additions and 4 deletions
|
@ -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]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue