Skip to content

Commit ff21629

Browse files
committed
fix srtyle
1 parent 2fd21f0 commit ff21629

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

graalpython/lib-python/3/test/test_threading.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1808,9 +1808,9 @@ def setUp(self):
18081808

18091809
def test_excepthook(self):
18101810
with support.captured_output("stderr") as stderr:
1811-
thread = ThreadRunFail(name="excepthook thread")
1812-
thread.start()
1813-
thread.join()
1811+
thread = ThreadRunFail(name="excepthook thread")
1812+
thread.start()
1813+
thread.join()
18141814

18151815
stderr = stderr.getvalue().strip()
18161816
self.assertIn(f'Exception in thread {thread.name}:\n', stderr)

0 commit comments

Comments
 (0)