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

Commit e13455b3 authored by Etan Cohen's avatar Etan Cohen Committed by Android (Google) Code Review
Browse files

Merge "[WIFI][VTS] Don't call RequestDriverDebugDump API if not supported" into oc-dev

parents 24e16013 7f326f9f
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -235,8 +235,10 @@ TEST_F(WifiChipHidlTest, RequestDriverDebugDump) {
    if (caps & IWifiChip::ChipCapabilityMask::DEBUG_MEMORY_DRIVER_DUMP) {
        EXPECT_EQ(WifiStatusCode::SUCCESS, status_and_driver_dump.first.code);
    } else {
        EXPECT_EQ(WifiStatusCode::ERROR_NOT_SUPPORTED,
                  status_and_driver_dump.first.code);
      // API semantics (today) are such that function cannot be called if not capable!
      //
      //  EXPECT_EQ(WifiStatusCode::ERROR_NOT_SUPPORTED,
      //            status_and_driver_dump.first.code);
    }
}