Skip to content

Commit 11786dd

Browse files
committed
Fixing Javadoc
1 parent d4bc4c7 commit 11786dd

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

driver-core/src/test/unit/com/mongodb/internal/time/ExponentialBackoffTest.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,15 @@
1818

1919
import org.junit.jupiter.api.Test;
2020

21+
import java.util.function.DoubleSupplier;
22+
2123
import static org.junit.jupiter.api.Assertions.assertEquals;
2224
import static org.junit.jupiter.api.Assertions.assertTrue;
2325

2426
class ExponentialBackoffTest {
25-
/**
27+
/**
2628
* Expected {@linkplain ExponentialBackoff#calculateTransactionBackoffMs(int) backoffs} with 1.0 as
27-
* {@link ExponentialBackoff#setTestJitterSupplier(DoubleSupplier) jiter}.
29+
* {@link ExponentialBackoff#setTestJitterSupplier(DoubleSupplier) jitter}.
2830
*/
2931
private static final double[] EXPECTED_BACKOFFS_MAX_VALUES = {5.0, 7.5, 11.25, 16.875, 25.3125, 37.96875, 56.953125, 85.4296875, 128.14453125,
3032
192.21679688, 288.32519531, 432.48779297, 500.0};

0 commit comments

Comments
 (0)