Skip to content

Commit 8ac140f

Browse files
Incorrect default test root on antlr project #1017
Fix for validation message text
1 parent f8db8ce commit 8ac140f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/ui/GenerateTestsDialogWindow.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ class GenerateTestsDialogWindow(val model: GenerateTestsModel) : DialogWrapper(m
430430
?: return ValidationInfo("Test source root is not configured", testSourceFolderField.childComponent)
431431

432432
if (!model.project.isBuildWithGradle && ModuleUtil.findModuleForFile(testRoot.toRealFile(), model.project) == null) {
433-
return ValidationInfo("Test source root is located out of content entry", testSourceFolderField.childComponent)
433+
return ValidationInfo("Test source root is located out of any module", testSourceFolderField.childComponent)
434434
}
435435

436436
membersTable.tableHeader?.background = UIUtil.getTableBackground()

0 commit comments

Comments
 (0)