You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*Api": all Platform (all, jvm, js): all Extension (none, kotlin 1.3): none
Code related feature
// guides the user to use toEqualNumerically or toEqualIncludingScale
expect(BigDecimal("10")).toEqual(BigDecimal("10.0"))
expect(BigDecimal("10") asBigDecimal?).toEqual(BigDecimal("10.0"))
// guides the user to use notToEqualNumerically or notToEqualIncludingScale
expect(BigDecimal("10")).notToEqual(BigDecimal("10.0"))
// does not guide the user
expect(BigDecimal("10") asBigDecimal?).toEqual(BigDecimal("10.0"))
The text was updated successfully, but these errors were encountered:
*Api": all
Platform (all, jvm, js): all
Extension (none, kotlin 1.3): none
Code related feature
The text was updated successfully, but these errors were encountered: