Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2019-06-12 17:35:42 +0000
committerMichael Keppler2019-06-20 18:47:21 +0000
commit4e74fabf1344fa92e92efc059b53d4170e3edd79 (patch)
tree9c7126a69ff69de1ea09df4ceffa8b01f387cc9c /org.eclipse.egit.ui.test/src/org/eclipse
parentf395c56d6232e147f9ff3a4acdaf7c1913256267 (diff)
downloadegit-4e74fabf1344fa92e92efc059b53d4170e3edd79.tar.gz
egit-4e74fabf1344fa92e92efc059b53d4170e3edd79.tar.xz
egit-4e74fabf1344fa92e92efc059b53d4170e3edd79.zip
Reword commit dialog - Use verbs instead of OK
Ok button text changed to Reword. Bug: 548144 Change-Id: I823ea451498925cf8a70cc6c114f06c904cbde01 Signed-off-by: Manuel Niquet <m_niquet82@yahoo.de> Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com> Signed-off-by: Michael Keppler <Michael.Keppler@gmx.de>
Diffstat (limited to 'org.eclipse.egit.ui.test/src/org/eclipse')
-rw-r--r--org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/gitflow/FeatureFinishSquashHandlerTest.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/gitflow/FeatureFinishSquashHandlerTest.java b/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/gitflow/FeatureFinishSquashHandlerTest.java
index eb5f18f1b9..c5925cc38e 100644
--- a/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/gitflow/FeatureFinishSquashHandlerTest.java
+++ b/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/gitflow/FeatureFinishSquashHandlerTest.java
@@ -99,7 +99,9 @@ public class FeatureFinishSquashHandlerTest extends
String text = bot.styledText().getText();
text = text.substring(text.indexOf('\n'));
bot.styledText().setText(SQUASHED_COMMENT_SUMMARY + text);
- bot.button("OK").click();
+ bot.button(
+ org.eclipse.egit.ui.internal.UIText.RebaseInteractiveHandler_EditMessageDialogOkButton)
+ .click();
}
@Override

Back to the top