Skip to content

Commit

Permalink
Fix failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
vbreuss committed Dec 19, 2024
1 parent 7940101 commit b464d34
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ void Act()
}

await That(Act).Should().Throw<ArgumentException>()
.WithMessage("The stream is unwritable").And
.WithMessage("The stream is unwritable*").AsWildcard().And
.WithParamName("destination").And
.WithHResult(-2147024809);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ void Act()
}

await That(Act).Should().Throw<ArgumentException>()
.WithMessage("The stream is unreadable").And
.WithMessage("The stream is unreadable*").AsWildcard().And
.WithParamName("source").And
.WithHResult(-2147024809);
}
Expand Down

0 comments on commit b464d34

Please sign in to comment.