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

Commit 4c912d90 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Fix setCarrierInfoForImsiEncryption in VTS 1.6"

parents 127b72ac f1762ea8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -727,8 +727,8 @@ TEST_P(RadioHidlTest_v1_6, setCarrierInfoForImsiEncryption_1_6) {

    radio_v1_6->setCarrierInfoForImsiEncryption_1_6(serial, imsiInfo);
    EXPECT_EQ(std::cv_status::no_timeout, wait());
    EXPECT_EQ(RadioResponseType::SOLICITED, radioRsp_v1_6->rspInfo.type);
    EXPECT_EQ(serial, radioRsp_v1_6->rspInfo.serial);
    EXPECT_EQ(RadioResponseType::SOLICITED, radioRsp_v1_6->rspInfo_v1_0.type);
    EXPECT_EQ(serial, radioRsp_v1_6->rspInfo_v1_0.serial);

    if (cardStatus.base.base.base.cardState == CardState::ABSENT) {
        ASSERT_TRUE(CheckAnyOfErrors(
+3 −1
Original line number Diff line number Diff line
@@ -751,7 +751,9 @@ Return<void> RadioResponse_v1_6::acknowledgeRequest(int32_t /*serial*/) {

/* 1.1 Apis */
Return<void> RadioResponse_v1_6::setCarrierInfoForImsiEncryptionResponse(
        const ::android::hardware::radio::V1_0::RadioResponseInfo& /*info*/) {
        const ::android::hardware::radio::V1_0::RadioResponseInfo& info) {
    rspInfo_v1_0 = info;
    parent_v1_6.notify(info.serial);
    return Void();
}