Skip to content

Commit

Permalink
Reformat with scalafmt 3.8.4
Browse files Browse the repository at this point in the history
Executed command: scalafmt --non-interactive

Signed-off-by: Scala Steward <[email protected]>
  • Loading branch information
scala-steward authored and michaelmior committed Jan 14, 2025
1 parent 34c79b1 commit 5a8590c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -450,9 +450,8 @@ final case class MaxNumValueProperty(
maxNumValue.map(_.setScale(0, BigDecimal.RoundingMode.FLOOR).toBigInt),
other
.map(o =>
o.maxNumValue.map(n =>
n.setScale(0, BigDecimal.RoundingMode.CEILING).toBigInt
)
o.maxNumValue
.map(n => n.setScale(0, BigDecimal.RoundingMode.CEILING).toBigInt)
)
.getOrElse(None),
exclusive,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,9 @@ class ProductSchemaSpec extends UnitSpec with ScalaCheckPropertyChecks {
anomalous: Boolean
): Unit = {
it should s"${if (anomalous) ""
else "not "}find anomalies for a ProductSchema using ${productType} and ${matchCount} ${if (matchCount == 1)
else "not "}find anomalies for a ProductSchema using ${productType} and ${matchCount} ${if (
matchCount == 1
)
"match"
else "matches"}" in {
val schemas =
Expand Down

0 comments on commit 5a8590c

Please sign in to comment.