Skip to content

Commit e6e159c

Browse files
committed
Fix tests
1 parent 00989ed commit e6e159c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/eca/llm_util_test.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
(with-open [r (io/reader (ByteArrayInputStream. (.getBytes (str "{\"bar\": \"baz\"}\n"
3131
"{\"bar\": \"foo\"}"))))]
3232
(is (match?
33-
[[nil {:bar "baz"}]
34-
[nil {:bar "foo"}]]
33+
[["data" {:bar "baz"}]
34+
["data" {:bar "foo"}]]
3535
(llm-util/event-data-seq r)))))
3636
(testing "Ignore [DONE] when exists"
3737
(with-open [r (io/reader (ByteArrayInputStream. (.getBytes (str "data: {\"type\": \"foo.bar\"}\n"

0 commit comments

Comments
 (0)