Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
noelwelsh committed Feb 12, 2024
1 parent b4c6869 commit 0c886fc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion core/jvm/src/test/scala/krop/route/ParamSuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,11 @@ class ParamSuite extends FunSuite {
)
paramAllParsesValid(
Param.lift(Param.int),
Seq(Seq() -> Seq(), Seq("1") -> Seq(1), Seq("1", "2", "3") -> Seq(1, 2, 3))
Seq(
Seq() -> Seq(),
Seq("1") -> Seq(1),
Seq("1", "2", "3") -> Seq(1, 2, 3)
)
)
}
}

0 comments on commit 0c886fc

Please sign in to comment.