commit | 9bbb9626caf9043d6a9abd6288c19d4f2f938f18 | [log] [tgz] |
---|---|---|
author | Gabriel Biren <gbiren@google.com> | Mon Apr 10 20:22:33 2023 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Mon Apr 10 20:22:33 2023 +0000 |
tree | 26de5f0e33e2902730c2766fb452442e4d0ffc32 | |
parent | 5715cefa3923cfe83265310f3510c673c8e63e8e [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: If1a68ade0b02860615a495d6256b6363560df38c 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()); } /*