Skip to content

Commit

Permalink
fix: add required parameter to ClassRepresentation in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladislav Artiukhov committed Oct 9, 2024
1 parent 656f4f2 commit eb19a43
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@ class PromptBuilderTest {
}
""".trimIndent(),
allMethods = listOf(method1, method2),
constructorSignatures = emptyList(),
classType = ClassType.CLASS,
)

Expand Down Expand Up @@ -215,6 +216,7 @@ class PromptBuilderTest {
}
""".trimIndent(),
allMethods = emptyList(),
constructorSignatures = emptyList(),
classType = ClassType.INTERFACE,
)
val mySubClass = ClassRepresentation(
Expand All @@ -224,6 +226,7 @@ class PromptBuilderTest {
}
""".trimIndent(),
allMethods = emptyList(),
constructorSignatures = emptyList(),
classType = ClassType.CLASS,
)
val polymorphicRelations = mapOf(myInterface to listOf(mySubClass))
Expand Down

0 comments on commit eb19a43

Please sign in to comment.