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

Commit 380d1dc7 authored by Yuyang Huang's avatar Yuyang Huang Committed by Automerger Merge Worker
Browse files

Update APF VTS for VSR-14 compliance am: e2ff8e50 am: 39fdc470

parents e9b1ed6d 39fdc470
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -175,9 +175,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);
    }
}