aboutsummaryrefslogtreecommitdiffstats
path: root/library/python/pytest
diff options
context:
space:
mode:
Diffstat (limited to 'library/python/pytest')
-rw-r--r--library/python/pytest/plugins/fixtures.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/python/pytest/plugins/fixtures.py b/library/python/pytest/plugins/fixtures.py
index e321bfca74..6f7e0a27e4 100644
--- a/library/python/pytest/plugins/fixtures.py
+++ b/library/python/pytest/plugins/fixtures.py
@@ -33,7 +33,7 @@ def metrics(request):
def set_ybenchmark(cls, benchmark_values):
for benchmark in benchmark_values["benchmark"]:
name = benchmark["name"]
- for key, value in six.iteritems(benchmark):
+ for key, value in six.iteritems(benchmark):
if key != "name":
cls.set("{}_{}".format(name, key), value)