We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52d58d2 commit 47c2df1Copy full SHA for 47c2df1
tests/benchmarks/test_micro_benchmarks.py
@@ -529,7 +529,7 @@ def t():
529
def test_set_of_ints_core_json(benchmark):
530
v = SchemaValidator({'type': 'set', 'items_schema': {'type': 'int'}})
531
532
- json_data = [json.dumps(list(d)) for d in set_of_ints_duplicates]
+ json_data = [json.dumps(list(d)) for d in set_of_ints_data]
533
534
@benchmark
535
def t():
@@ -541,7 +541,7 @@ def t():
541
def test_set_of_ints_core_json_duplicates(benchmark):
542
543
544
- json_data = [json.dumps(list(d)) for d in set_of_ints_data]
+ json_data = [json.dumps(list(d)) for d in set_of_ints_duplicates]
545
546
547
0 commit comments