Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Wolf2018-09-12 20:15:30 +0000
committerThomas Wolf2018-09-12 20:17:42 +0000
commit32bbd140373f306bcb3c659f34f407ef9f437ce4 (patch)
treea7c4c6cebe76450fb508d4a8d5aa0c1af0bdd7f7
parent19894528b7810c062aa2e3b50995c7e616781cee (diff)
downloadegit-32bbd140373f306bcb3c659f34f407ef9f437ce4.tar.gz
egit-32bbd140373f306bcb3c659f34f407ef9f437ce4.tar.xz
egit-32bbd140373f306bcb3c659f34f407ef9f437ce4.zip
[test] Fix typo in HistoryViewTest
Change-Id: I53281cf0c9ff0a228a1ac0b6bf72b9c86cf8a329 Signed-off-by: Thomas Wolf <thomas.wolf@paranor.ch>
-rw-r--r--org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/test/history/HistoryViewTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/test/history/HistoryViewTest.java b/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/test/history/HistoryViewTest.java
index 911f913139..314f6c311d 100644
--- a/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/test/history/HistoryViewTest.java
+++ b/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/test/history/HistoryViewTest.java
@@ -271,7 +271,7 @@ public class HistoryViewTest extends LocalRepositoryTestCase {
// Wait a little bit to give the UiJob triggered a chance to run
Thread.sleep(100);
// Then join the UI update
- PlatformUI.getWorkbench().getDisplay().asyncExec(() -> {
+ PlatformUI.getWorkbench().getDisplay().syncExec(() -> {
/* empty */ });
return getHistoryViewBot().table(1);
}

Back to the top