Skip to content

Commit

Permalink
try fix github's action error
Browse files Browse the repository at this point in the history
  • Loading branch information
REAndroid committed Sep 15, 2023
1 parent 9bfec5a commit 6ae8147
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/test/java/com/reandroid/apk/ApkModuleCoderTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,13 @@ public void a_testDecodeToXml() throws IOException {
File dir = TestUtils.getTempDir();
dir = new File(dir, "decode_xml");
ApkModuleXmlDecoder decoder = new ApkModuleXmlDecoder(apkModule);
decoder.decode(dir);
Throwable throwable = null;
try{
decoder.decode(dir);
}catch (Throwable ex){
throwable = ex;
}
Assert.assertNull(throwable);
mDir_xml = dir;
}
@Test
Expand Down

0 comments on commit 6ae8147

Please sign in to comment.