fix so tests pass

This commit is contained in:
Paul Gauthier 2024-06-28 15:30:16 -07:00
parent e7aa10a89b
commit 307cfb2f44

View file

@ -66,6 +66,7 @@ class Coder:
test_cmd = None test_cmd = None
lint_outcome = None lint_outcome = None
test_outcome = None test_outcome = None
multi_response_content = ""
@classmethod @classmethod
def create( def create(
@ -857,6 +858,7 @@ class Coder:
if self.multi_response_content: if self.multi_response_content:
self.multi_response_content += self.partial_response_content self.multi_response_content += self.partial_response_content
self.partial_response_content = self.multi_response_content self.partial_response_content = self.multi_response_content
self.multi_response_content = ""
if exhausted: if exhausted:
self.show_exhausted_error() self.show_exhausted_error()