File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
FFmpegAndroid/src/androidTest/java/com/github/hiteshsondhi88/libffmpeg Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff 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 {
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments