Remove test exclusions after KT-45136 is fixed

This commit is contained in:
Ilya Gorbunov
2021-04-09 05:10:53 +03:00
parent ed88aa43a4
commit d062f54360
@@ -15,7 +15,6 @@ class FloorDivModTest {
@Test
fun intDivMod() {
fun check(a: Int, b: Int, expectedFd: Int? = null, expectedMod: Int? = null) {
if (a == Int.MIN_VALUE && b == -1) return // do not test, due to native KT-45136
val div = a / b
val rem = a % b
val fd = a.floorDiv(b)
@@ -51,7 +50,6 @@ class FloorDivModTest {
@Test
fun longDivMod() {
fun check(a: Long, b: Long, expectedFd: Long? = null, expectedMod: Long? = null) {
if (a == Long.MIN_VALUE && b == -1L) return // do not test, due to native KT-45136
val div = a / b
val rem = a % b
val fd = a.floorDiv(b)