Skip to content

Commit

Permalink
Fix broken test.
Browse files Browse the repository at this point in the history
  • Loading branch information
zhongl committed Nov 28, 2023
1 parent cd1b91d commit 67b7024
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,15 @@ class ConfAnnotationSpec extends AnyFlatSpec with Matchers {
}

val socket = new {
val timeout = 5 seconds
val timeout = 5.seconds
val buffer = 1024 * 64L
}

val client = "id"

val debug = false

val delays = 2 seconds
val delays = 2.seconds

def config = ConfigFactory.parseString(
"""|
Expand Down Expand Up @@ -119,7 +119,7 @@ class ConfAnnotationSpec extends AnyFlatSpec with Matchers {
val b = List(true, false)
val d = List(1.1, 2.2)
val l = List(512L, 1024 * 3L)
val t = List(1 second, 2 minutes)
val t = List(1.second, 2.minutes)
val s = List("a", "b")
val e = List("", "a", "", "c", "")
}
Expand Down

0 comments on commit 67b7024

Please sign in to comment.