We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15bcb7f commit d598c27Copy full SHA for d598c27
tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/markers/MarkerViewTests.java
@@ -46,9 +46,9 @@ public void testOpenView() {
46
IWorkbenchPage page = window.getActivePage();
47
48
try {
49
- page.showView(IPageLayout.ID_BOOKMARKS);
50
- page.showView(IPageLayout.ID_PROBLEM_VIEW);
51
- 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));
52
} catch (PartInitException e) {
53
assertTrue(e.getLocalizedMessage(), false);
54
return;
0 commit comments