mirror of
https://github.com/uutils/coreutils.git
synced 2026-06-10 15:48:22 -07:00
cut: simplify test by removing assert_eq! calls
This commit is contained in:
@@ -293,12 +293,11 @@ fn test_newline_delimited() {
|
||||
|
||||
#[test]
|
||||
fn test_multiple() {
|
||||
let result = new_ucmd!()
|
||||
new_ucmd!()
|
||||
.args(&["-f2", "-d:", "-d="])
|
||||
.pipe_in("a=b\n")
|
||||
.succeeds();
|
||||
assert_eq!(result.stdout_str(), "b\n");
|
||||
assert_eq!(result.stderr_str(), "");
|
||||
.succeeds()
|
||||
.stdout_only("b\n");
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
||||
Reference in New Issue
Block a user