From: Ken Jin Date: Wed, 20 Apr 2022 05:57:30 +0000 (+0700) Subject: Fix whitespace/indentation issues in test_sys (GH-32369) (GH-32372) X-Git-Tag: v3.10.5~161 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=942ea19cf956a2352bd82cc43fb4c1723ba72867;p=thirdparty%2FPython%2Fcpython.git Fix whitespace/indentation issues in test_sys (GH-32369) (GH-32372) --- diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py index 35da72c432b0..a0458092553b 100644 --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -1078,8 +1078,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)