From: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> Date: Sat, 3 Dec 2022 06:15:36 +0000 (+0530) Subject: GH-66285: remove redundant `time.sleep` from `test_fork_signal_handling` (GH-99963) X-Git-Tag: v3.12.0a3~30 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ee6015650017ca145a48c345311a9c481949de71;p=thirdparty%2FPython%2Fcpython.git GH-66285: remove redundant `time.sleep` from `test_fork_signal_handling` (GH-99963) --- diff --git a/Lib/test/test_asyncio/test_unix_events.py b/Lib/test/test_asyncio/test_unix_events.py index 092edb215854..309a1cfdb4aa 100644 --- a/Lib/test/test_asyncio/test_unix_events.py +++ b/Lib/test/test_asyncio/test_unix_events.py @@ -1907,7 +1907,6 @@ class TestFork(unittest.IsolatedAsyncioTestCase): def child_main(): signal.signal(signal.SIGTERM, lambda *args: child_handled.set()) child_started.set() - time.sleep(1) async def main(): loop = asyncio.get_running_loop()