diff options
| author | Tomasz Zarna | 2012-02-29 15:30:37 +0000 |
|---|---|---|
| committer | Tomasz Zarna | 2012-02-29 15:30:37 +0000 |
| commit | b896f2f2b85d161bd6fedf7e3424ea4e08abb7e6 (patch) | |
| tree | 9ebcc017faca89b2ac4477aeb5ac8119bfc7034c | |
| parent | 8cd38faca85662d839f72cf8c460d87020ee34a7 (diff) | |
| download | egit-b896f2f2b85d161bd6fedf7e3424ea4e08abb7e6.tar.gz egit-b896f2f2b85d161bd6fedf7e3424ea4e08abb7e6.tar.xz egit-b896f2f2b85d161bd6fedf7e3424ea4e08abb7e6.zip | |
Typo in RepoPropertiesPage fail message
Change-Id: I74870c60f3407df30412b9ae05671043e31cc3f7
| -rw-r--r-- | org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/common/RepoPropertiesPage.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/common/RepoPropertiesPage.java b/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/common/RepoPropertiesPage.java index 21c094a8a3..e3e43f5714 100644 --- a/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/common/RepoPropertiesPage.java +++ b/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/common/RepoPropertiesPage.java @@ -51,13 +51,12 @@ public class RepoPropertiesPage { public void setPushDestination(String destination) { SWTBotCombo destinationCombo = bot.comboBox(); String[] items = destinationCombo.items(); - for (int i = 0; i < items.length; i++) { + for (int i = 0; i < items.length; i++) if (items[i].startsWith(destination)) { destinationCombo.setSelection(i); return; } - } - fail("ould not find destination " + destination); + fail("Could not find destination " + destination); } @SuppressWarnings("boxing") |
