commit | a175232805cd42706846f8fb262db5d951d94ba5 | [log] [tgz] |
---|---|---|
author | Gabriel Biren <gbiren@google.com> | Mon Apr 10 20:22:34 2023 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Mon Apr 10 20:22:34 2023 +0000 |
tree | 26de5f0e33e2902730c2766fb452442e4d0ffc32 | |
parent | d5a54c50a9e794665dad8cf661eff8bb080e1a62 [diff] | |
parent | 3af3d5bd13671b4923cacab232622d3be07d9b39 [diff] |
Merge "Do not check the returned value in the VTS test for IWifiChip#getFeatureSet." into udc-dev am: 3af3d5bd13 Original change: https://googleplex-android-review.googlesource.com/c/platform/hardware/interfaces/+/22536147 Change-Id: Ie0789e92e8aa9be9e3e26d3602774ca07d751241 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
diff --git a/wifi/aidl/vts/functional/wifi_chip_aidl_test.cpp b/wifi/aidl/vts/functional/wifi_chip_aidl_test.cpp index ca88d8e..bbd27f9 100644 --- a/wifi/aidl/vts/functional/wifi_chip_aidl_test.cpp +++ b/wifi/aidl/vts/functional/wifi_chip_aidl_test.cpp
@@ -189,8 +189,8 @@ */ TEST_P(WifiChipAidlTest, GetFeatureSet) { configureChipForConcurrencyType(IfaceConcurrencyType::STA); - int32_t features = getChipFeatureSet(wifi_chip_); - EXPECT_NE(features, 0); + int32_t features; + EXPECT_TRUE(wifi_chip_->getFeatureSet(&features).isOk()); } /*