Skip to content

Commit 922c6ba

Browse files
committed
format
1 parent ecfefcc commit 922c6ba

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

scala-test-2/src/test/scala/com/baeldung/scala/eventually/EventuallyUnitTest.scala

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,10 @@ class EventuallyUnitTest extends AnyFlatSpec with Matchers with Eventually {
5454
it should "retry with explicit timeout value" in {
5555
val op = AsyncOperation(400)
5656
op.writeToDatabase("new-key", "value")
57-
eventually(timeout = Timeout(Span(2, Seconds)), interval = Interval(Span(50, Millis))) {
57+
eventually(
58+
timeout = Timeout(Span(2, Seconds)),
59+
interval = Interval(Span(50, Millis))
60+
) {
5861
op.readFromDatabase("new-key") shouldBe Some("value")
5962
}
6063
}

0 commit comments

Comments
 (0)