Skip to content

Commit 942ea19

Browse files
Fix whitespace/indentation issues in test_sys (GH-32369) (GH-32372)
1 parent 8299e24 commit 942ea19

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
@@ -1078,8 +1078,8 @@ class X(Exception):
10781078
with test.support.captured_stderr() as stderr, \
10791079
test.support.swap_attr(sys, 'unraisablehook',
10801080
sys.__unraisablehook__):
1081-
expected = self.write_unraisable_exc(
1082-
A.B.X(), "msg", "obj");
1081+
expected = self.write_unraisable_exc(
1082+
A.B.X(), "msg", "obj");
10831083
report = stderr.getvalue()
10841084
testName = 'test_original_unraisablehook_exception_qualname'
10851085
self.assertIn(f"{testName}.<locals>.A.B.X", report)

0 commit comments

Comments
 (0)