From: Ken Jin Date: Wed, 6 Apr 2022 17:11:07 +0000 (+0700) Subject: Fix whitespace/indentation issues in test_sys (GH-32369) (GH-32373) X-Git-Tag: v3.9.13~129 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1ab53511e96db42ade7bd8efdd4f237cbcb69252;p=thirdparty%2FPython%2Fcpython.git Fix whitespace/indentation issues in test_sys (GH-32369) (GH-32373) (cherry picked from commit da922409ac3e65c6bf2911401c7dfdf8ee6e0036) --- diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py index 2f1e5e971e8e..ed85d185412e 100644 --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -982,8 +982,8 @@ class UnraisableHookTest(unittest.TestCase): with test.support.captured_stderr() as stderr, \ test.support.swap_attr(sys, 'unraisablehook', sys.__unraisablehook__): - expected = self.write_unraisable_exc( - A.B.X(), "msg", "obj"); + expected = self.write_unraisable_exc( + A.B.X(), "msg", "obj"); report = stderr.getvalue() testName = 'test_original_unraisablehook_exception_qualname' self.assertIn(f"{testName}..A.B.X", report)