Skip to content

Commit

Permalink
Merge pull request #407 from sullis/scala-2.13.3
Browse files Browse the repository at this point in the history
Scala 2.13.3
  • Loading branch information
cquiroz authored Aug 8, 2020
2 parents 4cae55c + eaab4b0 commit 2e3caff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ object Versions {
val scalaJSVersion =
Option(System.getenv("SCALAJS_VERSION")).getOrElse("0.6.33")
val ScalaCross =
Seq("2.11.12", "2.12.10", "2.13.1")
Seq("2.11.12", "2.12.11", "2.13.3")

val ScalaTest = "3.2.1"
val ScalaCheck = "1.14.3"
Expand Down
2 changes: 1 addition & 1 deletion shared/src/test/scala/squants/market/PriceSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,6 @@ class PriceSpec extends AnyFlatSpec with Matchers {
it should "return a properly formatted string converted to different currency and/or unit with a valid MoneyContext" in {
implicit val moneyContext = MoneyContext(USD, defaultCurrencySet, Seq(USD(1) toThe JPY(100)))
val p = Price(USD(10), Meters(1))
p toString (JPY, Yards) should be(p.money.in(JPY).toString + "/" + p.quantity.toString(Yards))
p.toString(JPY, Yards) should be(p.money.in(JPY).toString + "/" + p.quantity.toString(Yards))
}
}

0 comments on commit 2e3caff

Please sign in to comment.