Skip to content

Commit f8f02e7

Browse files
fix typo
1 parent e3cfa8c commit f8f02e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

commit0/harness/execution_context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ def exec_run_with_timeout(self, command: str) -> tuple[str, bool, float]:
274274
for fname in self.files_to_collect:
275275
with (self.log_dir / fname).open("w") as f:
276276
f.write(self.sb.files.read(f"testbed/{fname}"))
277-
timed_out = self.sb.is_running
277+
timed_out = self.sb.is_running()
278278
end_time = time.time()
279279
return result.stderr, timed_out, end_time - start_time
280280

0 commit comments

Comments
 (0)