fix parse_failure_due_conflicted_flags test (#5926)

This commit is contained in:
Darren Schroeder
2022-07-01 21:59:51 -05:00
committed by GitHub
parent 79da470239
commit 3b357e5402

View File

@ -719,8 +719,8 @@ fn parse_failure_due_conflicted_flags() {
"#
));
assert!(actual.err.contains(
"You could not have both `--all` and `--as-module` at the same command line"
));
assert!(actual
.err
.contains("You cannot have both `--all` and `--as-module` on the same command line"));
})
}