commit | dfaf902393575be1194d686f1883bc93fd2b7162 | [log] [tgz] |
---|---|---|
author | Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> | Sat Mar 23 02:08:00 2024 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Sat Mar 23 02:08:00 2024 +0000 |
tree | 8773b7cd3129dc3ed3e6ed13379a236ad5dbe44f | |
parent | 7f50205333bbab0687ed049fcb09263d2ccc757f [diff] | |
parent | 46836057e07f80d0cfff30d73c1f53ba4ffeb7c5 [diff] |
Merge "Update APF VTS for VSR-14 compliance" into main am: f3f6e5b2cd am: 46836057e0 Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/3005171 Change-Id: I1834a81572bddebcc35ccd227aaa6409fc54ee61 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
diff --git a/wifi/aidl/vts/functional/wifi_sta_iface_aidl_test.cpp b/wifi/aidl/vts/functional/wifi_sta_iface_aidl_test.cpp index b426cdb..e8b2d57 100644 --- a/wifi/aidl/vts/functional/wifi_sta_iface_aidl_test.cpp +++ b/wifi/aidl/vts/functional/wifi_sta_iface_aidl_test.cpp
@@ -180,9 +180,9 @@ EXPECT_TRUE(isFeatureSupported(IWifiStaIface::FeatureSetMask::APF)); StaApfPacketFilterCapabilities apf_caps = {}; EXPECT_TRUE(wifi_sta_iface_->getApfPacketFilterCapabilities(&apf_caps).isOk()); - // The APF version must be 4 and the usable memory must be at least + // The APF version must be 4 or higher and the usable memory must be at least // 1024 bytes. - EXPECT_EQ(apf_caps.version, 4); + EXPECT_GE(apf_caps.version, 4); EXPECT_GE(apf_caps.maxLength, 1024); } }