qrort 1 год назад
Родитель
Сommit
9eca6f9e5a
1 измененных файлов с 2 добавлено и 1 удалено
  1. 2 1
      ydb/tests/functional/clickbench/test.py

+ 2 - 1
ydb/tests/functional/clickbench/test.py

@@ -28,7 +28,8 @@ def run_cli(argv):
 
 
 def get_queries(filename):
-    path = os.path.join(yatest.common.source_path("ydb/tests/functional/clickbench"), filename)
+    arcadia_root = yatest.common.source_path('')
+    path = os.path.join(arcadia_root, yatest.common.test_source_path(''), filename)
     with open(path, "r") as r:
         data = r.read()
     for query in data.split('\n'):