mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-10 04:27:37 +08:00
Merge remote-tracking branch 'origin/GP-0-dragonmacher-test-fixes-4-4-26' into Ghidra_12.1
This commit is contained in:
+4
-2
@@ -98,10 +98,12 @@ public class DataTreeDialogTest extends AbstractGhidraHeadedIntegrationTest {
|
||||
|
||||
TreeModel model = tree.getModel();
|
||||
GTreeNode root = (GTreeNode) model.getRoot();
|
||||
assertEquals(expectedFilteredNames.size(), root.getChildCount());
|
||||
for (int i = 0; i < expectedFilteredNames.size(); i++) {
|
||||
GTreeNode child = root.getChild(i);
|
||||
assertEquals(expectedFilteredNames.get(i), child.toString());
|
||||
if (child instanceof DomainFolderNode) {
|
||||
continue;
|
||||
}
|
||||
assertTrue(child.toString().startsWith("tN"));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user