Skip to content

Commit 3d9f7e2

Browse files
committed
Fix typo
1 parent bfce480 commit 3d9f7e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/tests/chiptest/darwin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@
2222
class DarwinExecutor(Executor):
2323
def run(self, subproc: SubprocessInfo, stdin, stdout, stderr):
2424
# Try harder to avoid any stdout buffering in our tests
25-
wrapped = wrapped.wrap_with('stdbuf', '-o0', '-i0')
25+
wrapped = subproc.wrap_with('stdbuf', '-o0', '-i0')
2626
s = subprocess.Popen(wrapped.to_cmd(), stdin=stdin, stdout=stdout, stderr=stderr)
2727
return s

0 commit comments

Comments
 (0)