Skip to content

Commit 70427c5

Browse files
committed
Fix test: update SummaryMetadata field names in emitter_test
Updated test to use new field names: - ShortSummary (instead of Text for short summary) - Summary (instead of Text for full summary) All tests and lints now passing.
1 parent 02215e3 commit 70427c5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

internal/bridge/emitter_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,8 @@ func TestEmitConversationCompleted(t *testing.T) {
271271
emitter := NewEmitter(config, "0.2.4")
272272

273273
summary := &SummaryMetadata{
274-
Text: "Test summary of the conversation",
274+
ShortSummary: "Test summary.",
275+
Summary: "Test summary of the conversation",
275276
AgentType: "gemini",
276277
Model: "gemini-2.0-flash",
277278
InputTokens: 2500,

0 commit comments

Comments
 (0)