Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dsmith3197 committed Nov 9, 2023
1 parent eb0cfff commit 75a6337
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sinks/util/retries.rs
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ mod tests {
JitterMode::Full,
);

let expected_fib = vec![1, 1, 2, 3, 5, 8];
let expected_fib = [1, 1, 2, 3, 5, 8];

for (i, &exp_fib_secs) in expected_fib.iter().enumerate() {
let backoff = policy.backoff();
Expand Down

0 comments on commit 75a6337

Please sign in to comment.