diff options
Diffstat (limited to 'scripts/test_scripts/oplog-import-export-test.py')
| -rw-r--r-- | scripts/test_scripts/oplog-import-export-test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/test_scripts/oplog-import-export-test.py b/scripts/test_scripts/oplog-import-export-test.py index f913a7351..93f732135 100644 --- a/scripts/test_scripts/oplog-import-export-test.py +++ b/scripts/test_scripts/oplog-import-export-test.py @@ -82,7 +82,7 @@ SERVER_ARGS: tuple[str, ...] = ( def zen_cmd(*args: str | Path, extra_zen_args: list[str] | None = None) -> list[str | Path]: """Build a zen CLI command list, inserting extra_zen_args before subcommands.""" - return [ZEN_EXE, *(extra_zen_args or []), *args] + return [ZEN_EXE, "--enable-execution-history=false", *(extra_zen_args or []), *args] def run(cmd: list[str | Path]) -> None: |