From d062f5436041c3390e12eeca3eeea0bfc602833b Mon Sep 17 00:00:00 2001 From: Ilya Gorbunov Date: Fri, 9 Apr 2021 05:10:53 +0300 Subject: [PATCH] Remove test exclusions after KT-45136 is fixed --- libraries/stdlib/test/numbers/FloorDivModTest.kt | 2 -- 1 file changed, 2 deletions(-) diff --git a/libraries/stdlib/test/numbers/FloorDivModTest.kt b/libraries/stdlib/test/numbers/FloorDivModTest.kt index b11a6d9305f..c42c0f961e9 100644 --- a/libraries/stdlib/test/numbers/FloorDivModTest.kt +++ b/libraries/stdlib/test/numbers/FloorDivModTest.kt @@ -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)