Skip to content

Commit

Permalink
refactor: explicit type declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
tyknkd committed May 4, 2024
1 parent 2681c0f commit d22913b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package io.newsanalyzer.testsupport

import java.time.Duration
import java.time.Duration.ofSeconds

object TestSettings {
val mqMinLatency = 5000L
val mqTimeout = ofSeconds(5)
val mqTimeout: Duration = ofSeconds(5)
}

0 comments on commit d22913b

Please sign in to comment.