Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3af3d5bd authored by Gabriel Biren's avatar Gabriel Biren Committed by Android (Google) Code Review
Browse files

Merge "Do not check the returned value in the VTS test for IWifiChip#getFeatureSet." into udc-dev

parents 0c045862 90059381
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -189,8 +189,8 @@ TEST_P(WifiChipAidlTest, RegisterEventCallback) {
 */
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());
}

/*