From 0aa15c08dd59d4d9eec73f2879948341df7f3aaa Mon Sep 17 00:00:00 2001 From: kshitijk4poor <82637225+kshitijk4poor@users.noreply.github.com> Date: Fri, 24 Jul 2026 23:08:59 +0500 Subject: [PATCH] fix: update test stub to accept workdir kwarg from salvaged PR #70548 --- tests/cron/test_scheduler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cron/test_scheduler.py b/tests/cron/test_scheduler.py index 0320d2fccbd5..ec8be4063131 100644 --- a/tests/cron/test_scheduler.py +++ b/tests/cron/test_scheduler.py @@ -3319,7 +3319,7 @@ class TestRunJobWakeGate: import cron.scheduler as scheduler call_count = 0 - def _script_stub(path): + def _script_stub(path, workdir=None, **kwargs): nonlocal call_count call_count += 1 return (True, "regular output")