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 {
14
14
if (Build .CPU_ABI .equals (CpuArchHelper .getx86CpuAbi ()) || Build .CPU_ABI .equals (CpuArchHelper .getx86_64CpuAbi ())) {
15
15
assertEquals (cpuArch , CpuArch .x86 );
16
16
} else if (Build .CPU_ABI .equals (CpuArchHelper .getArmeabiv7CpuAbi ())) {
17
- assertThat (cpuArch == CpuArch .ARMv7 || cpuArch == CpuArch . ARMv7_NEON ). isTrue ( );
17
+ assertEquals (cpuArch , CpuArch .ARMv7 );
18
18
} else if (Build .CPU_ABI .equals (CpuArchHelper .getArm64CpuAbi ())) {
19
19
assertEquals (cpuArch , CpuArch .ARMv7 );
20
20
}else {
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ public class CpuArchTest extends CommonInstrumentationTestCase {
14
14
15
15
public void testFFmpegAssetsWithSha1Sum () {
16
16
testFFmpegAsset (CpuArch .ARMv7 , "armeabi-v7a/ffmpeg" );
17
- testFFmpegAsset (CpuArch .ARMv7_NEON , "armeabi-v7a-neon/ffmpeg" );
18
17
testFFmpegAsset (CpuArch .x86 , "x86/ffmpeg" );
19
18
}
20
19
You can’t perform that action at this time.
0 commit comments