Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
oxisto committed Oct 23, 2024
1 parent db798c3 commit 3b8e1a5
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ fun main(args: Array<String>) {

val globalStart = Instant.now()

var allTests =
val allTests =
mapOf(
mandatoryTests to "mandatory",
optionalTests to "optional",
Expand All @@ -47,8 +47,8 @@ fun main(args: Array<String>) {
println("== ${entry.value.uppercase()} TESTS ==")

for (test in entry.key) {
var start = Instant.now()
var result = test.test(doc)
val start = Instant.now()
val result = test.test(doc)
println(
"Test ${test::class.simpleName}: $result. It took ${
Duration.between(start, Instant.now()).toMillis()
Expand Down

0 comments on commit 3b8e1a5

Please sign in to comment.