diff --git a/elastic4s-tests/src/test/scala/com/sksamuel/elastic4s/requests/indexlifecyclemanagement/IlmTest.scala b/elastic4s-tests/src/test/scala/com/sksamuel/elastic4s/requests/indexlifecyclemanagement/IlmTest.scala index f19247306..117f1e2f6 100644 --- a/elastic4s-tests/src/test/scala/com/sksamuel/elastic4s/requests/indexlifecyclemanagement/IlmTest.scala +++ b/elastic4s-tests/src/test/scala/com/sksamuel/elastic4s/requests/indexlifecyclemanagement/IlmTest.scala @@ -9,17 +9,17 @@ import org.scalatest.flatspec.AnyFlatSpec import org.scalatest.matchers.should.Matchers class IlmTest extends AnyFlatSpec with Matchers with ElasticDsl with DockerTests with Eventually { - "ilm" should "return status" in { - client.execute { - startIlm() - }.await.result - - eventually(timeout(5.seconds)) { - val resp = client.execute { - getIlmStatus - }.await.result - resp.operationMode shouldBe "RUNNING" - } + "ilm" should "return status" in { + client.execute { + startIlm() + }.await.result + + eventually(timeout(5.seconds)) { + val resp = client.execute { + getIlmStatus + }.await.result + resp.operationMode shouldBe "RUNNING" + } } "ilm" should "stop" in {