Fix tests for move: check applicability from changed text

Presentation status has stopped working after https://github.com/JetBrains/intellij-community/commit/18ce2c6070667608d9bf5a18926778187564fd19
This commit is contained in:
Nikolay Krasko
2016-07-01 16:17:39 +03:00
parent a471d8907a
commit 3d0d82b862
15 changed files with 25 additions and 43 deletions
@@ -1,9 +1,9 @@
// MOVE: down
class A {
<caret>init {
// First
}
init {
// Second
}
}
@@ -1,9 +1,9 @@
// MOVE: down
class A {
init {
// Second
}
<caret>init {
// First
}
}
@@ -1,9 +1,9 @@
// MOVE: up
class A {
init {
// First
}
<caret>init {
// Second
}
}
@@ -1,9 +1,9 @@
// MOVE: up
class A {
<caret>init {
// Second
}
init {
// First
}
}