Skip to content
Snippets Groups Projects

working on FEC tests again

Merged STEVAN Antoine requested to merge tests into main
1 file
+ 2
1
Compare changes
  • Side-by-side
  • Inline
+ 2
1
@@ -266,7 +266,7 @@ mod tests {
{
let is: Vec<usize> = c.iter().map(|(i, _)| *i).collect();
if there_are_recoded_shards {
let contains_recoded_shards = *is.iter().max().unwrap() <= n - 1;
let contains_recoded_shards = *is.iter().max().unwrap() < n;
if contains_recoded_shards {
continue;
}
@@ -275,6 +275,7 @@ mod tests {
let pretty_is = is
.iter()
.map(|&i| {
#[allow(clippy::comparison_chain)]
if i == n {
"(n)".into()
} else if i > n {
Loading