Skip to content

Commit

Permalink
Fix indentation (#3225)
Browse files Browse the repository at this point in the history
  • Loading branch information
Philippus authored Nov 28, 2024
1 parent 3b50f2b commit 11ec550
Showing 1 changed file with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 11ec550

Please sign in to comment.