Skip to content

Commit 07b775f

Browse files
authored
Fix test failing on master due to bad auto-merge (#16118)
1 parent a203b04 commit 07b775f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/tests_app/runners/backends/test_mp_process.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@
55
from lightning_app.runners.backends import MultiProcessingBackend
66

77

8+
@mock.patch("lightning_app.core.app.AppStatus")
89
@mock.patch("lightning_app.runners.backends.mp_process.multiprocessing")
9-
def test_backend_create_work_with_set_start_method(multiprocessing_mock):
10+
def test_backend_create_work_with_set_start_method(multiprocessing_mock, *_):
1011
backend = MultiProcessingBackend(entrypoint_file="fake.py")
1112
work = Mock(spec=LightningWork)
1213
work._start_method = "test_start_method"

0 commit comments

Comments
 (0)