Skip to content

Commit dfb90c0

Browse files
committed
fix
1 parent fbb6431 commit dfb90c0

File tree

1 file changed

+3
-3
lines changed
  • ydb/tests/functional/clickbench

1 file changed

+3
-3
lines changed

ydb/tests/functional/clickbench/test.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ def save_canonical_data(data, fname):
103103

104104

105105
@pytest.mark.parametrize("store", ["row", "column"])
106-
@pytest.mark.parametrize("executor", ["scan", "generic"])
107-
def test_run_benchmark(store, executor):
106+
@pytest.mark.parametrize("executer", ["scan", "generic"])
107+
def test_run_benchmark(store, executer):
108108
path = "clickbench/benchmark/{}/hits".format(store)
109109
ret = run_cli(["workload", "clickbench", "init", "--store", store, "--path", path])
110110
assert_that(ret.exit_code, is_(0))
@@ -120,7 +120,7 @@ def test_run_benchmark(store, executor):
120120

121121
# just validating that benchmark can be executed successfully on this data.
122122
out_fpath = os.path.join(yatest.common.output_path(), 'click_bench.{}.results'.format(store))
123-
ret = run_cli(["workload", "clickbench", "run", "--output", out_fpath, "--table", path, "--executor", executor])
123+
ret = run_cli(["workload", "clickbench", "run", "--output", out_fpath, "--table", path, "--executer", executer])
124124
assert_that(ret.exit_code, is_(0))
125125

126126

0 commit comments

Comments
 (0)