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

Commit 99096a01 authored by Android Build Coastguard Worker's avatar Android Build Coastguard Worker
Browse files

Snap for 11619294 from dfaf9023 to 24Q3-release

Change-Id: If798153c5330642694b9002b433bde493b53761f
parents 40d58687 dfaf9023
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -180,9 +180,9 @@ TEST_P(WifiStaIfaceAidlTest, CheckApfIsSupported) {
        EXPECT_TRUE(isFeatureSupported(IWifiStaIface::FeatureSetMask::APF));
        StaApfPacketFilterCapabilities apf_caps = {};
        EXPECT_TRUE(wifi_sta_iface_->getApfPacketFilterCapabilities(&apf_caps).isOk());
        // The APF version must be 4 and the usable memory must be at least
        // The APF version must be 4 or higher and the usable memory must be at least
        // 1024 bytes.
        EXPECT_EQ(apf_caps.version, 4);
        EXPECT_GE(apf_caps.version, 4);
        EXPECT_GE(apf_caps.maxLength, 1024);
    }
}