Skip to content

Commit ec593df

Browse files
review: update Lib/test/test_free_threading/test_collections.py
Co-authored-by: Pieter Eendebak <pieter.eendebak@gmail.com>
1 parent 0b0f494 commit ec593df

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/test/test_free_threading/test_collections.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def test_update_concurrent(self):
5656
NTHREADS = 4
5757
PER_THREAD = 5000
5858
c = Counter()
59-
data = ['x'] * PER_THREAD
59+
data = ('x',) * PER_THREAD
6060
threads = [threading.Thread(target=c.update, args=(data,))
6161
for _ in range(NTHREADS)]
6262
for t in threads:

0 commit comments

Comments
 (0)