From 1ab53511e96db42ade7bd8efdd4f237cbcb69252 Mon Sep 17 00:00:00 2001 From: Ken Jin Date: Thu, 7 Apr 2022 00:11:07 +0700 Subject: [PATCH] Fix whitespace/indentation issues in test_sys (GH-32369) (GH-32373) (cherry picked from commit da922409ac3e65c6bf2911401c7dfdf8ee6e0036) --- 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 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) -- 2.47.3