Skip to content

Commit

Permalink
MarkerViewTests: fix leaked Shell
Browse files Browse the repository at this point in the history
  • Loading branch information
EcljpseB0T authored and praveen-skp committed Oct 14, 2024
1 parent 3ef5186 commit 2b4711e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ public void testOpenView() {
IWorkbenchPage page = window.getActivePage();

try {
page.showView(IPageLayout.ID_BOOKMARKS);
page.showView(IPageLayout.ID_PROBLEM_VIEW);
page.showView(IPageLayout.ID_TASK_LIST);
page.hideView(page.showView(IPageLayout.ID_BOOKMARKS));
page.hideView(page.showView(IPageLayout.ID_PROBLEM_VIEW));
page.hideView(page.showView(IPageLayout.ID_TASK_LIST));
} catch (PartInitException e) {
assertTrue(e.getLocalizedMessage(), false);
return;
Expand Down

0 comments on commit 2b4711e

Please sign in to comment.