From 252eec115e2137b76728eed1f5e2cf98524bf2bc Mon Sep 17 00:00:00 2001 From: Andrew Zhu Date: Tue, 10 Dec 2024 11:11:58 -0500 Subject: [PATCH] build: fix write type --- tests/test_llama.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_llama.py b/tests/test_llama.py index 857331d..4e706bd 100644 --- a/tests/test_llama.py +++ b/tests/test_llama.py @@ -56,7 +56,7 @@ async def test_llama(create_kani, gh_log): "---\n\n" "> What are some cool things to do in Tokyo?\n\n" ) - gh_log.write(resp) + gh_log.write(resp.text) gh_log.write("\n\n---\n\n")