mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-09-26 21:28:59 +08:00
Merge remote-tracking branch 'origin/patch'
This commit is contained in:
@@ -54,9 +54,7 @@ public class ClassSearcherTest {
|
||||
"ghidra.util.classfinder.ClassSearcherTest$ClassWithStaticInitializerSideEffects",
|
||||
TestSuper.class, getClass().getClassLoader());
|
||||
assertNotNull(found);
|
||||
assertEquals(Canary.ALIVE, canary);
|
||||
Constructor<? extends TestSuper> constructor = found.getConstructor();
|
||||
assertEquals(Canary.ALIVE, canary);
|
||||
TestSuper instance = constructor.newInstance();
|
||||
assertNotNull(instance);
|
||||
assertEquals(Canary.DEAD, canary);
|
||||
|
||||
Reference in New Issue
Block a user