Skip to content

Commit 6922b0c

Browse files
authored
Follow-up fix for 0c84e2f (#557)
1 parent 661a89a commit 6922b0c

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
@@ -295,7 +295,7 @@ class GenerateTestsDialogWindow(val model: GenerateTestsModel) : DialogWrapper(m
295295
}
296296

297297
private fun findTestPackageComboValue(): String {
298-
return if (model.isMultiPackage) {
298+
return if (!model.isMultiPackage) {
299299
model.srcClasses.first().packageName
300300
} else {
301301
SAME_PACKAGE_LABEL

0 commit comments

Comments
 (0)