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

Commit 65210132 authored by Robert Shih's avatar Robert Shih Committed by Automerger Merge Worker
Browse files

DrmHalTest: null check for skipped test am: 9049fc93 am: efe8d1a7

parents 303092c4 efe8d1a7
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -263,6 +263,9 @@ std::vector<uint8_t> DrmHalTest::getVendorUUID() {
}

bool DrmHalTest::isCryptoSchemeSupported(Uuid uuid, SecurityLevel level, std::string mime) {
    if (drmFactory == nullptr) {
        return false;
    }
    CryptoSchemes schemes{};
    auto ret = drmFactory->getSupportedCryptoSchemes(&schemes);
    EXPECT_OK(ret);