Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMickael Istria2017-10-21 21:02:46 +0000
committerMickael Istria2017-12-05 15:43:00 +0000
commiteb33e5044d0a45ba9ac065298154812449676f74 (patch)
treec048c0f41b3dc46bebbbb72e2e87c09a6fad2d33 /org.eclipse.egit.ui.test/src/org/eclipse/egit
parentf6873ae7a2d2e46a67e8c3a62819c00c0dbfad98 (diff)
downloadegit-eb33e5044d0a45ba9ac065298154812449676f74.tar.gz
egit-eb33e5044d0a45ba9ac065298154812449676f74.tar.xz
egit-eb33e5044d0a45ba9ac065298154812449676f74.zip
Specialized labels for Push dialog buttons
Bug: 522118 Change-Id: Ib7cd6c44f4e0b863f2111104ed99e99e67908b9d Signed-off-by: Mickael Istria <mistria@redhat.com> Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.egit.ui.test/src/org/eclipse/egit')
-rw-r--r--org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/internal/push/PushBranchWizardTester.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/internal/push/PushBranchWizardTester.java b/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/internal/push/PushBranchWizardTester.java
index fdc2b271ff..0deba81dbf 100644
--- a/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/internal/push/PushBranchWizardTester.java
+++ b/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/internal/push/PushBranchWizardTester.java
@@ -149,13 +149,13 @@ public class PushBranchWizardTester {
}
public void next() {
- wizard.button(IDialogConstants.NEXT_LABEL).click();
+ wizard.button(UIText.PushBranchWizard_previewButton).click();
}
public void finish() {
JobJoiner jobJoiner = JobJoiner.startListening(JobFamilies.PUSH, 60,
TimeUnit.SECONDS);
- wizard.button(IDialogConstants.FINISH_LABEL).click();
+ wizard.button(UIText.PushBranchWizard_pushButton).click();
jobJoiner.join();
}
}

Back to the top