Skip to content

Commit e6d5717

Browse files
author
Hitesh Sondhi
committed
Updated Test Cases
1 parent 62ca722 commit e6d5717

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

FFmpegAndroid/src/androidTest/java/com/github/hiteshsondhi88/libffmpeg/CpuArchHelperTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public void testGetCpuArch() throws Exception {
1414
if (Build.CPU_ABI.equals(CpuArchHelper.getx86CpuAbi()) || Build.CPU_ABI.equals(CpuArchHelper.getx86_64CpuAbi())) {
1515
assertEquals(cpuArch, CpuArch.x86);
1616
} else if (Build.CPU_ABI.equals(CpuArchHelper.getArmeabiv7CpuAbi())) {
17-
assertThat(cpuArch == CpuArch.ARMv7 || cpuArch == CpuArch.ARMv7_NEON).isTrue();
17+
assertEquals(cpuArch, CpuArch.ARMv7);
1818
} else if (Build.CPU_ABI.equals(CpuArchHelper.getArm64CpuAbi())) {
1919
assertEquals(cpuArch, CpuArch.ARMv7);
2020
}else {

FFmpegAndroid/src/androidTest/java/com/github/hiteshsondhi88/libffmpeg/CpuArchTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ public class CpuArchTest extends CommonInstrumentationTestCase {
1414

1515
public void testFFmpegAssetsWithSha1Sum() {
1616
testFFmpegAsset(CpuArch.ARMv7, "armeabi-v7a/ffmpeg");
17-
testFFmpegAsset(CpuArch.ARMv7_NEON, "armeabi-v7a-neon/ffmpeg");
1817
testFFmpegAsset(CpuArch.x86, "x86/ffmpeg");
1918
}
2019

0 commit comments

Comments
 (0)