提交 3604a235 编写于 作者: M Mathieu Bastian

Fix flaky test on Windows

上级 c7e7e68e
......@@ -14,12 +14,14 @@ public class ProjectsImplTest {
public TemporaryFolder tempFolder = new TemporaryFolder();
@Test
public void testProjectsSort() {
public void testProjectsSort() throws InterruptedException {
ProjectsImpl projects = new ProjectsImpl();
ProjectImpl p1 = new ProjectImpl("p1", "p1");
p1.open();
Thread.sleep(10);
ProjectImpl p2 = new ProjectImpl("p2", "p2");
p2.open();
Thread.sleep(10);
ProjectImpl p3 = new ProjectImpl("p3", "p3");
projects.addProject(p3);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册