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 jukzi committed Oct 10, 2024
1 parent 86f9d93 commit 3cddf27
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 3cddf27

Please sign in to comment.