From 51016462eafd09a1dec0dc7b8ee5de3eea9c7f89 Mon Sep 17 00:00:00 2001 From: Xiang Wang Date: Wed, 5 Jun 2024 18:04:34 +0000 Subject: [PATCH] Update the vendor API level requirement to 202404 Bug: 302018405 Test: atest VtsHalThermalTargetTest Change-Id: If3d94374a6096dacc0ed78b0dc933d79adc148d8 --- thermal/aidl/vts/VtsHalThermalTargetTest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/thermal/aidl/vts/VtsHalThermalTargetTest.cpp b/thermal/aidl/vts/VtsHalThermalTargetTest.cpp index d36d9869ce..7f33e2df66 100644 --- a/thermal/aidl/vts/VtsHalThermalTargetTest.cpp +++ b/thermal/aidl/vts/VtsHalThermalTargetTest.cpp @@ -352,8 +352,8 @@ TEST_P(ThermalAidlTest, TemperatureThresholdTest) { // @VsrTest = VSR-3.2.5-002 TEST_P(ThermalAidlTest, SkinTemperatureThresholdsTest) { auto apiLevel = ::android::base::GetIntProperty("ro.vendor.api_level", 0); - if (apiLevel < 35) { - GTEST_SKIP() << "Skipping test as the vendor level is below 35: " << apiLevel; + if (apiLevel < 202404) { + GTEST_SKIP() << "Skipping test as the vendor level is below 202404: " << apiLevel; } for (const auto& feature : kNonHandheldFeatures) { if (::testing::deviceSupportsFeature(feature.c_str())) {