Skip to content

Commit 47c2df1

Browse files
authored
Fix swapped test names in test_micro_benchmarks.py (#607)
1 parent 52d58d2 commit 47c2df1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/benchmarks/test_micro_benchmarks.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ def t():
529529
def test_set_of_ints_core_json(benchmark):
530530
v = SchemaValidator({'type': 'set', 'items_schema': {'type': 'int'}})
531531

532-
json_data = [json.dumps(list(d)) for d in set_of_ints_duplicates]
532+
json_data = [json.dumps(list(d)) for d in set_of_ints_data]
533533

534534
@benchmark
535535
def t():
@@ -541,7 +541,7 @@ def t():
541541
def test_set_of_ints_core_json_duplicates(benchmark):
542542
v = SchemaValidator({'type': 'set', 'items_schema': {'type': 'int'}})
543543

544-
json_data = [json.dumps(list(d)) for d in set_of_ints_data]
544+
json_data = [json.dumps(list(d)) for d in set_of_ints_duplicates]
545545

546546
@benchmark
547547
def t():

0 commit comments

Comments
 (0)