From da922409ac3e65c6bf2911401c7dfdf8ee6e0036 Mon Sep 17 00:00:00 2001 From: Ken Jin Date: Wed, 6 Apr 2022 22:40:51 +0700 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 f4deb1763b95f0..445ff893ff6fcf 100644 --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -1179,8 +1179,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() self.assertIn(A.B.X.__qualname__, report) if moduleName in ['builtins', '__main__']: