Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: stratis-storage/stratisd
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4959003cc9d5ea195834d0ff9b8be1d4e48067bd
Choose a base ref
..
head repository: stratis-storage/stratisd
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9694a2b88ca91190eb85dda7cc9f663b044742a8
Choose a head ref
Showing with 1 addition and 6 deletions.
  1. +1 −6 tests/stratis_min.rs
7 changes: 1 addition & 6 deletions tests/stratis_min.rs
Original file line number Diff line number Diff line change
@@ -254,12 +254,7 @@ fn test_stratis_min_pool_start_invalid_unlock_method() {
.arg("--name")
.arg("pn")
.arg("--unlock-method=bogus");
cmd.assert()
.failure()
.code(1)
.stderr(predicate::str::contains(
"bogus is an invalid unlock method",
));
cmd.assert().failure().code(2);
}

#[test]