automatic cargo CI changes
This commit is contained in:
parent
40a3db61ce
commit
14263cd6b2
|
@ -109,7 +109,9 @@ async fn they_are_about_the_same(world: &mut NumWorld) {
|
||||||
assert!(
|
assert!(
|
||||||
still_same,
|
still_same,
|
||||||
"{} and {} are not about the same! (gate: {})",
|
"{} and {} are not about the same! (gate: {})",
|
||||||
tup.0, last_num, calc_gate(tup.0, last_num)
|
tup.0,
|
||||||
|
last_num,
|
||||||
|
calc_gate(tup.0, last_num)
|
||||||
);
|
);
|
||||||
last_num = tup.0;
|
last_num = tup.0;
|
||||||
}
|
}
|
||||||
|
@ -124,7 +126,9 @@ async fn they_are_not_about_the_same(world: &mut NumWorld) {
|
||||||
assert!(
|
assert!(
|
||||||
!found_a_same,
|
!found_a_same,
|
||||||
"{} and {} are about the same! (gate: {})",
|
"{} and {} are about the same! (gate: {})",
|
||||||
tup.0, last_num, calc_gate(tup.0, last_num)
|
tup.0,
|
||||||
|
last_num,
|
||||||
|
calc_gate(tup.0, last_num)
|
||||||
);
|
);
|
||||||
last_num = tup.0;
|
last_num = tup.0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue