Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorilya.ivanov2011-02-02 17:18:29 +0000
committerChris Aniszczyk2011-02-16 17:32:54 +0000
commita6beb8b28589dee21107692bf3c49e45cb8b700c (patch)
tree0aa9cd7e9e02c2a83c9fb5a5c15b86a6309c9b4b /org.eclipse.egit.ui.test
parentefa109e21b6807d030f366b658c186e6b5a50ced (diff)
downloadegit-a6beb8b28589dee21107692bf3c49e45cb8b700c.tar.gz
egit-a6beb8b28589dee21107692bf3c49e45cb8b700c.tar.xz
egit-a6beb8b28589dee21107692bf3c49e45cb8b700c.zip
[sync] configurable date format and change set labels
Added new preferances to Team->Git->Label Decorations->Other Bug: 336130 CQ: 4868 Change-Id: I56a1d4cd5078240a9bb518d7991d01f033a0fd51 Signed-off-by: Ilya Ivanov <ilya.ivanov@intland.com> Signed-off-by: Dariusz Luksza <dariusz@luksza.org> Signed-off-by: Chris Aniszczyk <caniszczyk@gmail.com>
Diffstat (limited to 'org.eclipse.egit.ui.test')
-rw-r--r--org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/view/synchronize/SynchronizeViewTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/view/synchronize/SynchronizeViewTest.java b/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/view/synchronize/SynchronizeViewTest.java
index 8da3a4367b..d4ed8f6abb 100644
--- a/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/view/synchronize/SynchronizeViewTest.java
+++ b/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/view/synchronize/SynchronizeViewTest.java
@@ -218,7 +218,7 @@ public class SynchronizeViewTest extends LocalRepositoryTestCase {
public boolean test() throws Exception {
for (SWTBotTreeItem item : tree.getAllItems())
- if (item.getText().startsWith(text))
+ if (item.getText().contains(text))
return true;
return false;
}

Back to the top