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

tests: change error messages for wrong arguments

Clap used `"` for argument values, now uses `'`.
This commit is contained in:
Niyaz Nigmatullin 2022-10-16 19:28:04 +03:00
parent 39edd16c9f
commit 277e3d17a1
2 changed files with 3 additions and 3 deletions

View file

@ -1395,7 +1395,7 @@ fn test_cp_reflink_bad() {
.arg(TEST_HELLO_WORLD_SOURCE)
.arg(TEST_EXISTING_FILE)
.fails()
.stderr_contains("error: \"bad\" isn't a valid value for '--reflink[=<WHEN>]'");
.stderr_contains("error: 'bad' isn't a valid value for '--reflink[=<WHEN>]'");
}
#[test]