Fix tests: do not refer to removed things.

This commit is contained in:
Ilya Gorbunov
2016-09-13 01:11:01 +03:00
parent 660dc94f7c
commit 6656d10c67
3 changed files with 6 additions and 6 deletions
@@ -3,12 +3,12 @@ interface T {
}
fun foo(o: T) {
if (o is Runnable) {
if (o is Comparable<T>) {
o.<caret>
}
}
// EXIST: { itemText: "run", attributes: "bold" }
// EXIST: { itemText: "compareTo", attributes: "bold" }
// EXIST: { itemText: "f", attributes: "bold" }
// EXIST: { itemText: "hashCode", attributes: "" }
// EXIST: { itemText: "equals", attributes: "" }