Merge "Remove redundant zipfuse mount check"
diff --git a/tests/hostside/java/android/virt/test/MicrodroidTestCase.java b/tests/hostside/java/android/virt/test/MicrodroidTestCase.java
index d48028e..8afc287 100644
--- a/tests/hostside/java/android/virt/test/MicrodroidTestCase.java
+++ b/tests/hostside/java/android/virt/test/MicrodroidTestCase.java
@@ -55,10 +55,6 @@
final String apkIdsigPartition = "/dev/block/by-name/microdroid-apk-idsig";
assertThat(runOnMicrodroid("ls", apkIdsigPartition), is(apkIdsigPartition));
- // Check if the APK is mounted using zipfuse
- final String mountEntry = "zipfuse on /mnt/apk type fuse.zipfuse";
- assertThat(runOnMicrodroid("mount"), containsString(mountEntry));
-
// Check if the native library in the APK is has correct filesystem info
final String[] abis = runOnMicrodroid("getprop", "ro.product.cpu.abilist").split(",");
assertThat(abis.length, is(1));