Skip to content

Commit

Permalink
seq:fix test
Browse files Browse the repository at this point in the history
Fix the test that fails after the implementation of the floating-point
format. The expected output now matches the GNU seq output.

    seq 0xlmnop
    seq: invalid floating point argument: ‘0xlmnop’

Issue uutils#6935
  • Loading branch information
alexs-sh committed Jan 2, 2025
1 parent 246673e commit a1f975e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/by-util/test_seq.rs
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,7 @@ fn test_parse_error_hex() {
new_ucmd!()
.arg("0xlmnop")
.fails()
.usage_error("invalid hexadecimal argument: '0xlmnop'");
.usage_error("invalid floating point argument: '0xlmnop'");
}

#[test]
Expand Down

0 comments on commit a1f975e

Please sign in to comment.