Skip to content

Commit

Permalink
fix: warnings
Browse files Browse the repository at this point in the history
Signed-off-by: Vincenzo Palazzo <[email protected]>
  • Loading branch information
vincenzopalazzo committed Feb 8, 2024
1 parent 04b75da commit b736815
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion folgore-plugin/src/recovery.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ mod tests {
assert_eq!(*strategy.retry_state.borrow(), 4);
let mut time = 10;
for _ in 0..4 {
time = time * 2;
time *= 2;
}
assert_eq!(*strategy.timeout.borrow(), Duration::from_millis(time));
}
Expand Down

0 comments on commit b736815

Please sign in to comment.