]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix whitespace/indentation issues in test_sys (GH-32369)
authorKen Jin <kenjin4096@gmail.com>
Wed, 6 Apr 2022 15:40:51 +0000 (22:40 +0700)
committerGitHub <noreply@github.com>
Wed, 6 Apr 2022 15:40:51 +0000 (23:40 +0800)
Lib/test/test_sys.py

index f4deb1763b95f0be18424149b60f4acbc30eda92..445ff893ff6fcf3ec5310f9d74c6d97f2963041b 100644 (file)
@@ -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__']: