Skip to content

Commit 141119a

Browse files
committed
fix: linter
1 parent a48fb40 commit 141119a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/test/java/dev/openfga/sdk/api/client/HttpRequestAttemptRetryTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,8 @@ void shouldUseRetryAfterWhenLargerThanGlobalMinimumDelay() throws Exception {
552552
// Then
553553
// Should have respected the Retry-After header (2 seconds) over minimum delay (500ms)
554554
// Note: Using generous bounds due to timing variability in test environments
555-
assertThat(totalTime.toMillis()).isGreaterThan(1200); // Should be at least ~2 seconds (with larger CI tolerance)
555+
assertThat(totalTime.toMillis())
556+
.isGreaterThan(1200); // Should be at least ~2 seconds (with larger CI tolerance)
556557
assertThat(totalTime.toMillis()).isLessThan(10000); // But not excessive
557558

558559
// Verify both requests were made

0 commit comments

Comments
 (0)