rename variables, move bundlehost instance, clean dead fileinstaller code

This commit is contained in:
Jason P. Leasure 2020-03-26 16:23:04 -04:00
parent 2e05da019f
commit ad897f263c
10 changed files with 80 additions and 122 deletions

View file

@ -116,11 +116,11 @@ public class GhidraScriptMgrPluginScreenShots extends GhidraScreenShotGenerator
paths.add(new BundlePath("$GHIDRA_HOME/Features/Base/ghidra_scripts"));
paths.add(new BundlePath("/User/defined/invalid/directory"));
BundleStatusProvider bundleStatus = showProvider(BundleStatusProvider.class);
bundleStatus.setPaths(paths);
BundleStatusProvider bundleStatusProvider = showProvider(BundleStatusProvider.class);
bundleStatusProvider.setPaths(paths);
waitForComponentProvider(BundleStatusProvider.class);
captureComponent(bundleStatus.getComponent());
captureComponent(bundleStatusProvider.getComponent());
}
@Test