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

numfmt: enable ignored test

This commit is contained in:
Daniel Hofstetter 2022-07-21 13:20:42 +02:00
parent ba24565b60
commit 29c4d08ee9

View file

@ -295,11 +295,9 @@ fn test_leading_whitespace_in_free_argument_should_imply_padding() {
} }
#[test] #[test]
#[ignore]
fn test_should_calculate_implicit_padding_per_free_argument() { fn test_should_calculate_implicit_padding_per_free_argument() {
new_ucmd!() new_ucmd!()
.args(&["--from=auto", " 1Ki", " 2K"]) .args(&["--from=auto", " 1Ki", " 2K"])
.pipe_in(" 1Ki\n 2K")
.run() .run()
.stdout_is(" 1024\n 2000\n"); .stdout_is(" 1024\n 2000\n");
} }