File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -261,7 +261,7 @@ def test_multidict_getall_str_hit(
261
261
262
262
@benchmark
263
263
def _run () -> None :
264
- for i in range (30 ):
264
+ for i in range (100 ):
265
265
md .getall ("key1" )
266
266
md .getall ("key2" )
267
267
md .getall ("key3" )
@@ -276,7 +276,7 @@ def test_multidict_getall_str_miss(
276
276
277
277
@benchmark
278
278
def _run () -> None :
279
- for i in range (30 ):
279
+ for i in range (100 ):
280
280
md .getall ("miss1" , ())
281
281
md .getall ("miss2" , ())
282
282
md .getall ("miss3" , ())
@@ -293,7 +293,7 @@ def test_cimultidict_getall_istr_hit(
293
293
294
294
@benchmark
295
295
def _run () -> None :
296
- for i in range (30 ):
296
+ for i in range (100 ):
297
297
for key in all_istr :
298
298
md .getall (key )
299
299
@@ -309,7 +309,7 @@ def test_cimultidict_getall_istr_miss(
309
309
310
310
@benchmark
311
311
def _run () -> None :
312
- for i in range (30 ):
312
+ for i in range (100 ):
313
313
for key in miss_istr :
314
314
md .getall (key , ())
315
315
You can’t perform that action at this time.
0 commit comments