Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Weiser2017-04-03 18:54:14 +0000
committerThomas Wolf2017-05-05 09:15:42 +0000
commit43a007c85ddbfa88131533ea242490b00a659372 (patch)
tree3bb4a7f4d23729e1d1180865e0ec5caf2f213fd2 /org.eclipse.egit.ui.test/src
parentd2a494c5bb4d64b8e4e4c26c000469f97ad5825c (diff)
downloadegit-43a007c85ddbfa88131533ea242490b00a659372.tar.gz
egit-43a007c85ddbfa88131533ea242490b00a659372.tar.xz
egit-43a007c85ddbfa88131533ea242490b00a659372.zip
Use verbs in PullResultDialog instead of OK
Uses IDialogConstants.Close as ok button label in PullResultDialog. Modifies test. Bug: 514320 Change-Id: I5b01b2b442922fee53b48e550846c66996ae8dfe Signed-off-by: David Weiser <david.weiser@vogella.com>
Diffstat (limited to 'org.eclipse.egit.ui.test/src')
-rw-r--r--org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/wizards/pull/PullWizardTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/wizards/pull/PullWizardTest.java b/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/wizards/pull/PullWizardTest.java
index 7690347202..21bcf624fc 100644
--- a/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/wizards/pull/PullWizardTest.java
+++ b/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/wizards/pull/PullWizardTest.java
@@ -100,7 +100,7 @@ public class PullWizardTest extends GitRepositoriesViewTestBase {
"Pull Result");
bot.waitUntil(waitForShell(shellWithTextPrefixMatcher));
shellWithTextPrefixMatcher.getFoundShell().setFocus();
- bot.button(IDialogConstants.OK_LABEL).click();
+ bot.button(IDialogConstants.CLOSE_LABEL).click();
}

Back to the top