reenable test which was temporarily disabled

This commit is contained in:
Dmitry Jemerov
2015-03-09 16:09:39 +01:00
parent a701cb2bd9
commit 26e452383e
2 changed files with 2 additions and 2 deletions
@@ -215,7 +215,7 @@ private val binaryOperations: HashMap<BinaryOperationKey<*, *>, Pair<Function2<A
binaryOperation(DOUBLE, LONG, "minus", { a, b -> a.minus(b) }, emptyBinaryFun),
binaryOperation(DOUBLE, SHORT, "minus", { a, b -> a.minus(b) }, emptyBinaryFun),
binaryOperation(DOUBLE, BYTE, "mod", { a, b -> a.mod(b) }, emptyBinaryFun),
// binaryOperation(DOUBLE, CHAR, "mod", { a, b -> a.mod(b) }, emptyBinaryFun),
binaryOperation(DOUBLE, CHAR, "mod", { a, b -> a.mod(b) }, emptyBinaryFun),
binaryOperation(DOUBLE, DOUBLE, "mod", { a, b -> a.mod(b) }, emptyBinaryFun),
binaryOperation(DOUBLE, FLOAT, "mod", { a, b -> a.mod(b) }, emptyBinaryFun),
binaryOperation(DOUBLE, INT, "mod", { a, b -> a.mod(b) }, emptyBinaryFun),
@@ -21,7 +21,7 @@ import org.jetbrains.kotlin.generators.evaluate
import org.jetbrains.kotlin.test.JetTestUtils
import org.junit.Ignore
Ignore public class GenerateOperationsMapTest : UsefulTestCase() {
public class GenerateOperationsMapTest : UsefulTestCase() {
public fun testGeneratedDataIsUpToDate(): Unit {
val text = evaluate.generate()
JetTestUtils.assertEqualsToFile(evaluate.DEST_FILE, text)