From b2290891a3b3351efccb9b7147856713df3d901d Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Thu, 26 Mar 2026 13:11:24 -1000 Subject: [PATCH] =?UTF-8?q?Revert=20benchmark=20changes=20=E2=80=94=20keep?= =?UTF-8?q?=20identical=20to=20base=20for=20apples-to-apples=20comparison?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/benchmarks/components/climate/bench_climate.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/benchmarks/components/climate/bench_climate.cpp b/tests/benchmarks/components/climate/bench_climate.cpp index 0416b6daa3..316a72b2b6 100644 --- a/tests/benchmarks/components/climate/bench_climate.cpp +++ b/tests/benchmarks/components/climate/bench_climate.cpp @@ -54,9 +54,6 @@ static void setup_hvac_climate(BenchClimate &climate) { climate.traits_.set_visual_target_temperature_step(0.5f); climate.traits_.set_visual_current_temperature_step(0.1f); climate.traits_.add_feature_flags(climate::CLIMATE_SUPPORTS_CURRENT_TEMPERATURE | climate::CLIMATE_SUPPORTS_ACTION); - // Custom modes use the new API — stored on Climate entity, zero-copy in get_traits() - climate.set_supported_custom_fan_modes({"Turbo", "Silent", "Eco"}); - climate.set_supported_custom_presets({"My Preset", "Night Mode"}); } // --- Climate::publish_state() with temperature update ---