Skip to content

Commit 2379da6

Browse files
committed
Updating unused variable in tests to _
1 parent 9598af0 commit 2379da6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rust-runtime/aws-smithy-runtime/src/client/retries/token_bucket.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,7 @@ mod tests {
523523
let iterations = 5;
524524

525525
// Accumulate fractional tokens
526-
for i in 1..=iterations {
526+
for _ in 1..=iterations {
527527
let current = atomic.load();
528528
atomic.store(current + success_reward);
529529
}

0 commit comments

Comments
 (0)