mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 03:27:44 +00:00
mktemp: adjust the error message to match 9.5
This commit is contained in:
parent
8ae8de0cad
commit
ee198126af
2 changed files with 8 additions and 3 deletions
|
@ -629,7 +629,7 @@ fn test_too_few_xs_suffix() {
|
|||
new_ucmd!()
|
||||
.args(&["--suffix=X", "aXX"])
|
||||
.fails()
|
||||
.stderr_only("mktemp: too few X's in template 'aXXX'\n");
|
||||
.stderr_only("mktemp: too few X's in template 'aXX'\n");
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
@ -637,7 +637,7 @@ fn test_too_few_xs_suffix_directory() {
|
|||
new_ucmd!()
|
||||
.args(&["-d", "--suffix=X", "aXX"])
|
||||
.fails()
|
||||
.stderr_only("mktemp: too few X's in template 'aXXX'\n");
|
||||
.stderr_only("mktemp: too few X's in template 'aXX'\n");
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue