commit | 46836057e07f80d0cfff30d73c1f53ba4ffeb7c5 | [log] [tgz] |
---|---|---|
author | Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> | Sat Mar 23 01:50:19 2024 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Sat Mar 23 01:50:19 2024 +0000 |
tree | 14dc6c43d35c15fa9e87ba0262b2e6761d34aaeb | |
parent | a5855a159247a97aa1088aadaa09815dbd1a8af0 [diff] | |
parent | f3f6e5b2cd0a41ce4f5e972a40263dfce68668e2 [diff] |
Merge "Update APF VTS for VSR-14 compliance" into main am: f3f6e5b2cd Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/3005171 Change-Id: Ib7fe2edeedb641e13ef1efcd842b1d502397f1fd 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 e456e49..2ee960f 100644 --- a/wifi/aidl/vts/functional/wifi_sta_iface_aidl_test.cpp +++ b/wifi/aidl/vts/functional/wifi_sta_iface_aidl_test.cpp
@@ -175,9 +175,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); } }