Skip to content

Commit 1ab5351

Browse files
Fix whitespace/indentation issues in test_sys (GH-32369) (GH-32373)
(cherry picked from commit da92240)
1 parent b5b3b91 commit 1ab5351

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/test/test_sys.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -982,8 +982,8 @@ class X(Exception):
982982
with test.support.captured_stderr() as stderr, \
983983
test.support.swap_attr(sys, 'unraisablehook',
984984
sys.__unraisablehook__):
985-
expected = self.write_unraisable_exc(
986-
A.B.X(), "msg", "obj");
985+
expected = self.write_unraisable_exc(
986+
A.B.X(), "msg", "obj");
987987
report = stderr.getvalue()
988988
testName = 'test_original_unraisablehook_exception_qualname'
989989
self.assertIn(f"{testName}.<locals>.A.B.X", report)

0 commit comments

Comments
 (0)