@@ -103,8 +103,8 @@ def save_canonical_data(data, fname):
103
103
104
104
105
105
@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 ):
108
108
path = "clickbench/benchmark/{}/hits" .format (store )
109
109
ret = run_cli (["workload" , "clickbench" , "init" , "--store" , store , "--path" , path ])
110
110
assert_that (ret .exit_code , is_ (0 ))
@@ -120,7 +120,7 @@ def test_run_benchmark(store, executor):
120
120
121
121
# just validating that benchmark can be executed successfully on this data.
122
122
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 ])
124
124
assert_that (ret .exit_code , is_ (0 ))
125
125
126
126
0 commit comments