Skip to content

Commit ca9e6a5

Browse files
committed
remove whitespace from test_iteration.py
1 parent 288c2a5 commit ca9e6a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/test/test_free_threading/test_iteration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def run_threads(self, func, *args, numthreads=NUMTHREADS):
3535
t.start()
3636
threads.append(t)
3737
return threads
38-
38+
3939
def test_iteration(self):
4040
"""Test iteration over a shared container"""
4141
seq = self.make_testdata(NUMITEMS)
@@ -53,7 +53,7 @@ def worker():
5353
t.join()
5454
# Each thread has its own iterator, so results should be entirely predictable.
5555
self.assertEqual(results, [NUMITEMS] * NUMTHREADS)
56-
56+
5757
def test_shared_iterator(self):
5858
"""Test iteration over a shared iterator"""
5959
seq = self.make_testdata(NUMITEMS)

0 commit comments

Comments
 (0)