Protection against "<caret>" missing in test data

Many incorrect tests fixed
This commit is contained in:
Valentin Kipyatkov
2016-09-21 22:08:19 +03:00
parent be8b31e82b
commit 21c2268f70
29 changed files with 52 additions and 27 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
fun <T> doSomething(a: T) {}
fun main(x: Int) {
if (x !in 5..6) {
if (x <caret>!in 5..6) {
doSomething("test")
}
}
+1 -1
View File
@@ -2,7 +2,7 @@
fun <T> doSomething(a: T) {}
fun main(x: Int) {
if (x !is Int) {
if (x <caret>!is Int) {
doSomething("test")
}
}