Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
bgaidioz committed Feb 21, 2024
1 parent 3e67aa5 commit 2eef6dd
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions utils/src/test/scala/raw/utils/RawTestSuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,10 @@ trait RawTestSuite extends FixtureAnyFunSuite with BeforeAndAfterAll with Strict
logger.debug(s"Waiting for services to terminate gracefully. Attempts left: $attempts")
Thread.sleep(1000)
}
assert(servicesAreStopped, s"Not all services stopped properly. Still running:\n"
+ RawService.services.asScala.map(s => s"- $s: can be running = ${serviceCanBeRunning(s)}").mkString("\n"))
assert(
servicesAreStopped,
s"Not all services stopped properly. Still running:\n"
+ RawService.services.asScala.map(s => s"- $s: can be running = ${serviceCanBeRunning(s)}").mkString("\n")
)
}
}

0 comments on commit 2eef6dd

Please sign in to comment.