mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Run cbc1/cbcs tests from API 25 onwards
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=168834998
This commit is contained in:
parent
6592a6474e
commit
b2bc4450df
1 changed files with 6 additions and 2 deletions
|
|
@ -74,7 +74,9 @@ public final class CommonEncryptionDrmTest extends ActivityInstrumentationTestCa
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testCbc1SchemeType() {
|
public void testCbc1SchemeType() {
|
||||||
if (Util.SDK_INT < 24) {
|
if (Util.SDK_INT < 25) {
|
||||||
|
// cbc1 support was added in API 24, but it is stable from API 25 onwards.
|
||||||
|
// See [internal: b/65634809].
|
||||||
// Pass.
|
// Pass.
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
@ -82,7 +84,9 @@ public final class CommonEncryptionDrmTest extends ActivityInstrumentationTestCa
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testCbcsSchemeType() {
|
public void testCbcsSchemeType() {
|
||||||
if (Util.SDK_INT < 24) {
|
if (Util.SDK_INT < 25) {
|
||||||
|
// cbcs support was added in API 24, but it is stable from API 25 onwards.
|
||||||
|
// See [internal: b/65634809].
|
||||||
// Pass.
|
// Pass.
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue