Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -761,6 +761,9 @@ jobs:
- name: ide/projectuiapi.base
run: ant $OPTS -f ide/projectuiapi.base test

- name: ide/projectui
run: ant $OPTS -f ide/projectui test

- name: ide/refactoring.api
run: ant $OPTS -f ide/refactoring.api test

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,6 @@ protected void setUp () throws Exception {
"org.openide.util.lookup.MetaInfServicesLookup.beforeLookup",
"org.netbeans.modules.project.ui.OpenProjectList.close",
"org.netbeans.modules.project.ui.OpenProjectList.doOpenProject");
RestrictThreadCreation.forbidNewThreads(false);
}

@SuppressWarnings("deprecation")
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ public void testReplaceProjectSingleNonRootNode() throws Exception { // #197864
}
};
ProjectsRootNode.checkNoLazyNode(ch);
Node[] ns = ch.getNodes(true);
Node[] ns = ch.getNodes(false);
assertEquals(1, ns.length);
assertEquals("p - Testing", ns[0].getDisplayName());
}
Expand Down
Loading