Skip to content

Commit a82a82a

Browse files
committed
test
1 parent 6c6cb8b commit a82a82a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/unit/_utils/test_system.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from __future__ import annotations
22

33
import sys
4-
from multiprocessing import Barrier, Process, Value, set_start_method, synchronize
4+
from multiprocessing import Barrier, Process, Value, synchronize
55
from multiprocessing.shared_memory import SharedMemory
66
from typing import TYPE_CHECKING
77

@@ -38,7 +38,6 @@ def test_memory_estimation_does_not_overestimate_due_to_shared_memory() -> None:
3838
equal to additional_memory_size_estimate_per_unshared_memory_child where the additional shared memory is exactly
3939
the same as the unshared memory.
4040
"""
41-
set_start_method('fork', force=True)
4241
estimated_memory_expectation = Value('b', False) # noqa: FBT003 # Common usage pattern for multiprocessing.Value
4342

4443
def parent_process() -> None:

0 commit comments

Comments
 (0)