You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The newest version of cargo mutants v25.0.1 added a new type of mutation
that attempts to delete entire match arms.
Mutants passing on 7b3ea49
`259 mutants tested in 8m 49s: 163 caught, 96 unviable`
Closespayjoin#671
@@ -134,23 +134,24 @@ impl std::error::Error for Error {
134
134
135
135
#[cfg(test)]
136
136
pub(crate)mod test {
137
-
use bitcoin::Amount;
137
+
use bitcoin::{Amount,FeeRate};
138
138
139
139
usesuper::*;
140
140
usecrate::receive::optional_parameters::Params;
141
141
usecrate::Version;
142
142
143
143
#[test]
144
144
fntest_parse_params(){
145
-
use bitcoin::FeeRate;
146
-
147
-
let pairs = url::form_urlencoded::parse(b"maxadditionalfeecontribution=182&additionalfeeoutputindex=0&minfeerate=1&disableoutputsubstitution=true&optimisticmerge=true");
145
+
let pairs = url::form_urlencoded::parse(b"&maxadditionalfeecontribution=182&additionalfeeoutputindex=0&minfeerate=2&disableoutputsubstitution=true&optimisticmerge=true");
148
146
let params = Params::from_query_pairs(pairs,&[Version::One])
149
147
.expect("Could not parse params from query pairs");
0 commit comments