From: Ken Jin Date: Wed, 6 Apr 2022 15:40:51 +0000 (+0700) Subject: Fix whitespace/indentation issues in test_sys (GH-32369) X-Git-Tag: v3.11.0b1~447 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=da922409ac3e65c6bf2911401c7dfdf8ee6e0036;p=thirdparty%2FPython%2Fcpython.git Fix whitespace/indentation issues in test_sys (GH-32369) --- diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py index f4deb1763b95..445ff893ff6f 100644 --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -1179,8 +1179,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() self.assertIn(A.B.X.__qualname__, report) if moduleName in ['builtins', '__main__']: