Remove duplicate words

Closes gh-5731
This commit is contained in:
Johnny Lim
2016-04-19 10:36:38 +09:00
committed by Stephane Nicoll
parent 6ebc8d213d
commit 61b47079a4
4 changed files with 4 additions and 4 deletions

View File

@@ -175,7 +175,7 @@ public class RestarterTests {
Thread viaFactory = factory.newThread(runnable);
// Regular threads will inherit the current thread
assertThat(regular.getContextClassLoader()).isEqualTo(contextClassLoader);
// Factory threads should should inherit from the initial thread
// Factory threads should inherit from the initial thread
assertThat(viaFactory.getContextClassLoader()).isEqualTo(parentLoader);
};
};