From: Ɓukasz Langa Date: Wed, 22 Jan 2025 13:52:45 +0000 (+0100) Subject: gh-129158: Fix unwanted trailing whitespace in test_asyncio.test_subprocess (#129181) X-Git-Tag: v3.14.0a5~291 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2ed5ee9a50454b3fce87b26be5838ca7127b2ff9;p=thirdparty%2FPython%2Fcpython.git gh-129158: Fix unwanted trailing whitespace in test_asyncio.test_subprocess (#129181) --- diff --git a/Lib/test/test_asyncio/test_subprocess.py b/Lib/test/test_asyncio/test_subprocess.py index a053db8e6d76..341e3e979e00 100644 --- a/Lib/test/test_asyncio/test_subprocess.py +++ b/Lib/test/test_asyncio/test_subprocess.py @@ -905,7 +905,7 @@ if sys.platform != 'win32': # Force the use of the threaded child watcher unix_events.can_use_pidfd = mock.Mock(return_value=False) super().setUp() - + def tearDown(self): unix_events.can_use_pidfd = self._original_can_use_pidfd return super().tearDown()