diff options
author | Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> | 2022-12-03 06:15:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-03 06:15:36 (GMT) |
commit | ee6015650017ca145a48c345311a9c481949de71 (patch) | |
tree | 45f2c7ed1ffbc058d10c45cc767e0e5fa8ee8bb1 | |
parent | acf9184e6b68714cf7a756edefd02372dccd988b (diff) | |
download | cpython-ee6015650017ca145a48c345311a9c481949de71.zip cpython-ee6015650017ca145a48c345311a9c481949de71.tar.gz cpython-ee6015650017ca145a48c345311a9c481949de71.tar.bz2 |
GH-66285: remove redundant `time.sleep` from `test_fork_signal_handling` (GH-99963)
-rw-r--r-- | Lib/test/test_asyncio/test_unix_events.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_asyncio/test_unix_events.py b/Lib/test/test_asyncio/test_unix_events.py index 092edb2..309a1cf 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() |