Skip to content

Commit e3188f9

Browse files
committed
fix test
1 parent f0531bd commit e3188f9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

airflow-core/tests/unit/executors/test_local_executor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ def test_worker_process_revive(self):
182182
for killed_pid in worker_pid:
183183
# killing the worker process
184184
proc = mock.MagicMock()
185-
proc.is_alive.return_value = True
185+
proc.is_alive.return_value = False
186186

187187
executor.workers[killed_pid] = proc
188188

0 commit comments

Comments
 (0)