Skip to content

Commit e820c6f

Browse files
committed
fix(tests): fix required prop in test
1 parent 5757aa6 commit e820c6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openai-java-core/src/test/kotlin/com/openai/models/responses/StructuredResponseCreateParamsTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ internal class StructuredResponseCreateParamsTest {
5959
private val METADATA = ResponseCreateParams.Metadata.builder().build()
6060
private val SERVICE_TIER = ResponseCreateParams.ServiceTier.AUTO
6161
private val REASONING = Reasoning.builder().build()
62-
private val PROMPT = ResponsePrompt.builder().build()
62+
private val PROMPT = ResponsePrompt.builder().id("test-prompt-id").build()
6363

6464
private val TOOL_CHOICE_TYPE = ToolChoiceTypes.Type.FILE_SEARCH
6565
private val TOOL_CHOICE_TYPES = ToolChoiceTypes.builder().type(TOOL_CHOICE_TYPE).build()

0 commit comments

Comments
 (0)