Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'build/org.eclipse.cdt.autotools.ui.tests/src/org/eclipse/cdt/autotools/ui/tests/TestMakeTargets.java')
-rw-r--r--build/org.eclipse.cdt.autotools.ui.tests/src/org/eclipse/cdt/autotools/ui/tests/TestMakeTargets.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/build/org.eclipse.cdt.autotools.ui.tests/src/org/eclipse/cdt/autotools/ui/tests/TestMakeTargets.java b/build/org.eclipse.cdt.autotools.ui.tests/src/org/eclipse/cdt/autotools/ui/tests/TestMakeTargets.java
index d87684596c6..a77fdced7b2 100644
--- a/build/org.eclipse.cdt.autotools.ui.tests/src/org/eclipse/cdt/autotools/ui/tests/TestMakeTargets.java
+++ b/build/org.eclipse.cdt.autotools.ui.tests/src/org/eclipse/cdt/autotools/ui/tests/TestMakeTargets.java
@@ -58,8 +58,8 @@ public class TestMakeTargets extends AbstractTest {
projectExplorer.bot().tree().getTreeItem(projectName).select();
clickContextMenu(projectExplorer.bot().tree().select(projectName),
- "Make Targets", "Build...");
- shell = bot.shell("Make Targets");
+ "Build Targets", "Build...");
+ shell = bot.shell("Build Targets");
shell.activate();
bot.table().getTableItem("info").select();
bot.button("Build").click();
@@ -69,8 +69,8 @@ public class TestMakeTargets extends AbstractTest {
bot.waitUntil(consoleTextMatches(consoleView, p));
// Make Targets using right-click on project.
- clickProjectContextMenu("Make Targets", "Build...");
- shell = bot.shell("Make Targets");
+ clickProjectContextMenu("Build Targets", "Build...");
+ shell = bot.shell("Build Targets");
shell.activate();
bot.table().getTableItem("check").select();
bot.button("Build").click();

Back to the top