Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Stocker2013-11-22 11:48:36 +0000
committerRobin Stocker2013-11-22 17:54:30 +0000
commitdd15ed98779b602d49c71cc3f13a7fb7989d68c6 (patch)
tree6eb54e1289471ad7819cfd5e4a0b1c514880f979 /org.eclipse.egit.ui.test/src/org
parentf5c314e92f68aa9681fd6e85dc830d39b521b4e2 (diff)
downloadegit-dd15ed98779b602d49c71cc3f13a7fb7989d68c6.tar.gz
egit-dd15ed98779b602d49c71cc3f13a7fb7989d68c6.tar.xz
egit-dd15ed98779b602d49c71cc3f13a7fb7989d68c6.zip
[repoView] Remove duplicate command and handler for "Create Tag..."
Use the same handler as in the Team menu instead. Also remove the unused TagAction. Change-Id: I7ddf5e19ec26c184b8bc8b32cf16ef45e9b7d276 Signed-off-by: Robin Stocker <robin@nibor.org>
Diffstat (limited to 'org.eclipse.egit.ui.test/src/org')
-rw-r--r--org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/view/repositories/GitRepositoriesViewTagHandlingTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/view/repositories/GitRepositoriesViewTagHandlingTest.java b/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/view/repositories/GitRepositoriesViewTagHandlingTest.java
index cd44ba0525..fcda62ec55 100644
--- a/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/view/repositories/GitRepositoriesViewTagHandlingTest.java
+++ b/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/view/repositories/GitRepositoriesViewTagHandlingTest.java
@@ -180,8 +180,8 @@ public class GitRepositoriesViewTagHandlingTest extends
private void createTag(String name, String message) throws Exception {
SWTBotTree tree = getOrOpenView().bot().tree();
myRepoViewUtil.getTagsItem(tree, repositoryFile).select();
- ContextMenuHelper.clickContextMenu(tree, myUtil
- .getPluginLocalizedValue("CreateTagCommand"));
+ ContextMenuHelper.clickContextMenu(tree,
+ myUtil.getPluginLocalizedValue("RepoViewCreateTag.label"));
String shellTitle = UIText.CreateTagDialog_NewTag;
SWTBotShell createDialog = bot.shell(shellTitle).activate();
TestUtil.joinJobs(JobFamilies.FILL_TAG_LIST);

Back to the top