From cd8def481df926b2579b226f7c5527e90d0f2956 Mon Sep 17 00:00:00 2001 From: Fidget-Spinner <28750310+Fidget-Spinner@users.noreply.github.com> Date: Wed, 6 Apr 2022 23:45:35 +0800 Subject: [PATCH] Fix whitespace/indentation issues in test_sys (GH-32369) --- Lib/test/test_sys.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py index 35da72c432b0af..a0458092553b4c 100644 --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -1078,8 +1078,8 @@ class X(Exception): 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)