Skip to content

Commit

Permalink
TypingResultSpec fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcel Philipiak committed Nov 7, 2024
1 parent 818d1a3 commit 5976b3b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ class TypingResultSpec

test("determine if numbers can be converted") {
Typed[Int].canBeImplicitlyConvertedTo(Typed[Long]) shouldBe true
Typed[Long].canBeImplicitlyConvertedTo(Typed[Int]) shouldBe false
Typed[Long].canBeImplicitlyConvertedTo(Typed[Int]) shouldBe true
Typed[Long].canBeImplicitlyConvertedTo(Typed[Double]) shouldBe true
Typed[Double].canBeImplicitlyConvertedTo(Typed[Long]) shouldBe false
Typed[java.math.BigDecimal].canBeImplicitlyConvertedTo(Typed[Long]) shouldBe true
Expand Down

0 comments on commit 5976b3b

Please sign in to comment.