From f003af04b9d0b27042eaa8de4ac70e7134feb346 Mon Sep 17 00:00:00 2001 From: fjetter Date: Thu, 25 Apr 2024 17:13:09 +0200 Subject: [PATCH] fix cluster name --- tests/tpch/test_pyspark.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tpch/test_pyspark.py b/tests/tpch/test_pyspark.py index 8e725fbc19..8e08cc9d3f 100644 --- a/tests/tpch/test_pyspark.py +++ b/tests/tpch/test_pyspark.py @@ -66,7 +66,7 @@ def enable_shuffle_option(): @pytest.fixture(scope="module") def cluster_name(module, scale, name, enable_shuffle_option): if enable_shuffle_option: - return f"tpch-{module}.tuned-{scale}-{name}" + return f"tpch-{module}tuned-{scale}-{name}" else: return f"tpch-{module}-{scale}-{name}"