Merge pull request #3738 from cakebaker/numfmt_enable_test

numfmt: enable ignored test
This commit is contained in:
Sylvestre Ledru 2022-07-21 14:52:04 +02:00 committed by GitHub
commit be0cc8ff67
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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