Skip to content

Commit cc7edf4

Browse files
Update utbot-framework/src/main/kotlin/org/utbot/framework/assemble/AssembleModelGenerator.kt
Co-authored-by: Sergey Pospelov <sergeypospelov59@gmail.com>
1 parent d8db6ff commit cc7edf4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utbot-framework/src/main/kotlin/org/utbot/framework/assemble/AssembleModelGenerator.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ class AssembleModelGenerator(private val methodUnderTest: UtMethod<*>) {
368368
}
369369

370370
private val ClassId.isVisible : Boolean
371-
get() = this.isPublic || !this.isPrivate && this.packageName.startsWith(methodPackageName)
371+
get() = this.isPublic || !this.isPrivate && this.packageName.startsWith(methodPackageName)
372372

373373
private val Constructor<*>.isVisible : Boolean
374374
get() = this.isPublic || !this.isPrivate && this.declaringClass.packageName.startsWith(methodPackageName)

0 commit comments

Comments
 (0)