Skip to content

Commit 7185c9e

Browse files
committed
Fix compilation failure
1 parent 1b73942 commit 7185c9e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

utbot-framework-test/src/test/kotlin/org/utbot/examples/objects/AnonymousClassesExampleTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package org.utbot.examples.objects
22

3-
import org.utbot.examples.Full
3+
import org.utbot.tests.infrastructure.Full
44
import org.utbot.tests.infrastructure.UtValueTestCaseChecker
55
import org.utbot.tests.infrastructure.isException
66
import org.junit.jupiter.api.Test

utbot-framework/src/main/kotlin/org/utbot/framework/codegen/model/constructor/util/ConstructorUtils.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ internal fun arrayInitializer(arrayType: ClassId, elementType: ClassId, values:
312312
* @param elementType the element type of the returned array class id
313313
* @param isNullable a flag whether returned array is nullable or not
314314
*/
315-
internal fun arrayTypeOf(elementType: ClassId, isNullable: Boolean = false): ClassId {
315+
fun arrayTypeOf(elementType: ClassId, isNullable: Boolean = false): ClassId {
316316
val arrayIdName = "[${elementType.arrayLikeName}"
317317
return when (elementType) {
318318
is BuiltinClassId -> BuiltinClassId(

0 commit comments

Comments
 (0)