Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/test/history/HistoryViewTest.java')
-rw-r--r--org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/test/history/HistoryViewTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/test/history/HistoryViewTest.java b/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/test/history/HistoryViewTest.java
index dc2fbb0c0c..e03d0861aa 100644
--- a/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/test/history/HistoryViewTest.java
+++ b/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/test/history/HistoryViewTest.java
@@ -275,7 +275,7 @@ public class HistoryViewTest extends LocalRepositoryTestCase {
SWTBotTableItem item = table.getTableItem(0);
item.select();
ContextMenuHelper.clickContextMenu(table,
- UIText.GitHistoryPage_CreateBranchMenuLabel);
+ util.getPluginLocalizedValue("HistoryCreateBranch.label"));
SWTBotShell dialog = bot
.shell(UIText.CreateBranchWizard_NewBranchTitle);
dialog.bot().textWithId("BranchName").setText("NewBranch");
@@ -305,7 +305,7 @@ public class HistoryViewTest extends LocalRepositoryTestCase {
});
ContextMenuHelper.clickContextMenu(table,
- UIText.GitHistoryPage_CreateTagMenuLabel);
+ util.getPluginLocalizedValue("HistoryCreateTag.label"));
SWTBotShell dialog = bot.shell(UIText.CreateTagDialog_NewTag);
dialog.bot().textWithLabel(UIText.CreateTagDialog_tagName)
.setText("NewTag");

Back to the top