Drop deprecated char operations: correct test data.

This commit is contained in:
Ilya Gorbunov
2015-07-02 18:04:54 +03:00
parent e8aff3360a
commit 39b27751df
11 changed files with 17 additions and 281 deletions
@@ -434,9 +434,6 @@ public class JetTypeCheckerTest extends JetLiteFixture {
assertType("1.plus(1.toLong())", "Long");
assertType("1.plus(1)", "Int");
assertType("'1'.plus(1.toDouble())", "Double");
assertType("'1'.plus(1.toFloat())", "Float");
assertType("'1'.plus(1.toLong())", "Long");
assertType("'1'.plus(1)", "Int");
assertType("'1'.minus('1')", "Int"); // Plus is not available for char