Skip to content

Commit

Permalink
Reduce sleep time in MultiModuleUpdatePomsTest
Browse files Browse the repository at this point in the history
Signed-off-by: Kathryn Kodama <kathryn.s.kodama@gmail.com>
  • Loading branch information
kathrynkodama committed Jan 31, 2022
1 parent 669f151 commit 26976de
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@ private void touchFileTwice(String path) throws InterruptedException {
File file = new File(tempProj, path);
long time = System.currentTimeMillis();
assertTrue(file.setLastModified(time));
Thread.sleep(40);
assertTrue(file.setLastModified(time+40));
Thread.sleep(20);
assertTrue(file.setLastModified(time+20));
}


Expand Down

0 comments on commit 26976de

Please sign in to comment.