Skip to content

Commit 4de94bc

Browse files
test: accept stderr in string process adapter
Match the AutoInterrupt wait signature so diff parser tests can pass preserved stderr through finalize_process. Assisted-by: OpenAI GPT-5
1 parent 59cc3bb commit 4de94bc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/lib/helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def __init__(self, input_string):
9090
self.stdout = io.BytesIO(input_string)
9191
self.stderr = io.BytesIO()
9292

93-
def wait(self):
93+
def wait(self, stderr=None):
9494
return 0
9595

9696
poll = wait

0 commit comments

Comments
 (0)