commit | 1cfafd9e9d76fabc00f93d3e906c2d81e146baaa | [log] [tgz] |
---|---|---|
author | Gabriel Biren <gbiren@google.com> | Mon Apr 10 20:51:36 2023 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Mon Apr 10 20:51:36 2023 +0000 |
tree | 6d95e77d4d73ae31d34526617a98a8a7c0fe7a97 | |
parent | 65c322ff7e0af669acf787a2db14cbf97b879970 [diff] | |
parent | a175232805cd42706846f8fb262db5d951d94ba5 [diff] |
Merge "Do not check the returned value in the VTS test for IWifiChip#getFeatureSet." into udc-dev am: 3af3d5bd13 am: a175232805 Original change: https://googleplex-android-review.googlesource.com/c/platform/hardware/interfaces/+/22536147 Change-Id: I68765cfe59ab5b60c89b8403380a2733a61b6c8c 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()); } /*