Skip to content

Commit

Permalink
Fix the incorrect condition in UI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexPl292 committed Feb 23, 2024
1 parent 0df96a2 commit 720eae6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class IdeaFrame(

fun isSmartMode(): Boolean {
return callJs(
"component.project == null ? false : com.intellij.openapi. project.DumbService.isDumb(component.project);",
"component.project == null ? false : !com.intellij.openapi. project.DumbService.isDumb(component.project);",
true
)
}
Expand Down

0 comments on commit 720eae6

Please sign in to comment.