Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Loskutov2016-10-29 09:53:42 +0000
committerAndrey Loskutov2016-11-04 20:18:34 +0000
commitf60954ba88fb4b106af2fd6056f69c93a54110b6 (patch)
tree166163a7bf4d0b9f39d27daecb8a0badb1820344 /tests/org.eclipse.compare.tests/src/org/eclipse/compare/tests/AsyncExecTests.java
parenta114e221df58ed0106dc903ce3ff1aeb28da617f (diff)
downloadeclipse.platform.team-f60954ba88fb4b106af2fd6056f69c93a54110b6.tar.gz
eclipse.platform.team-f60954ba88fb4b106af2fd6056f69c93a54110b6.tar.xz
eclipse.platform.team-f60954ba88fb4b106af2fd6056f69c93a54110b6.zip
Bug 506732 - cleanup trailing spaces in test plugins
Change-Id: I55e43b2389d1a9baffdfecea701b37105e4548ae Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
Diffstat (limited to 'tests/org.eclipse.compare.tests/src/org/eclipse/compare/tests/AsyncExecTests.java')
-rw-r--r--tests/org.eclipse.compare.tests/src/org/eclipse/compare/tests/AsyncExecTests.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/org.eclipse.compare.tests/src/org/eclipse/compare/tests/AsyncExecTests.java b/tests/org.eclipse.compare.tests/src/org/eclipse/compare/tests/AsyncExecTests.java
index c814dd244..023a200c0 100644
--- a/tests/org.eclipse.compare.tests/src/org/eclipse/compare/tests/AsyncExecTests.java
+++ b/tests/org.eclipse.compare.tests/src/org/eclipse/compare/tests/AsyncExecTests.java
@@ -32,7 +32,7 @@ public class AsyncExecTests extends TestCase {
public AsyncExecTests(String name) {
super(name);
}
-
+
public void testQueueAdd() {
WorkQueue q = new WorkQueue();
assertTrue(q.isEmpty());
@@ -80,7 +80,7 @@ public class AsyncExecTests extends TestCase {
assertEquals(r, q.remove());
assertTrue(q.isEmpty());
}
-
+
public void testWorker() {
final Worker w = new Worker("");
final List<IRunnableWithProgress> worked = new ArrayList<>();
@@ -142,7 +142,7 @@ public class AsyncExecTests extends TestCase {
assertEquals(r, worked.get(1));
assertEquals(r2, worked.get(0));
}
-
+
public void testCancelOnRequeue() {
final Worker w = new Worker("");
final List<IRunnableWithProgress> worked = new ArrayList<>();

Back to the top