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

Commit c1a127e9 authored by Yomna Nasser's avatar Yomna Nasser Committed by Jayachandran C
Browse files

Update setNullCipherAndIntegrityEnabled API.

Additionally update isNullCipherAndIntegrityEnabled VTS to reflect the same.

Bug: b/237529943
Test: m
Change-Id: I816bccb87d3ce4f89fb81eecdd9b040c91484847
parent 32488fc3
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -622,6 +622,7 @@ oneway interface IRadioNetworkResponse {
     *   RadioError:NONE
     *   RadioError:RADIO_NOT_AVAILABLE
     *   RadioError:MODEM_ERR
     *   RadioError:REQUEST_NOT_SUPPORTED
     */
    void setNullCipherAndIntegrityEnabledResponse(in RadioResponseInfo info);

+3 −3
Original line number Diff line number Diff line
@@ -2021,8 +2021,8 @@ TEST_P(RadioNetworkTest, isNullCipherAndIntegrityEnabled) {
    EXPECT_EQ(RadioResponseType::SOLICITED, radioRsp_network->rspInfo.type);
    EXPECT_EQ(serial, radioRsp_network->rspInfo.serial);

    ASSERT_TRUE(CheckAnyOfErrors(
            radioRsp_network->rspInfo.error,
            {RadioError::NONE, RadioError::RADIO_NOT_AVAILABLE, RadioError::MODEM_ERR}));
    ASSERT_TRUE(CheckAnyOfErrors(radioRsp_network->rspInfo.error,
                                 {RadioError::NONE, RadioError::RADIO_NOT_AVAILABLE,
                                  RadioError::MODEM_ERR, RadioError::REQUEST_NOT_SUPPORTED}));
    LOG(DEBUG) << "isNullCipherAndIntegrityEnabled finished";
}