Add some small delay also on non-Windows between deleting local repo and rebuilding in DeleteRepoNativeIT

This commit is contained in:
Peter Palaga
2021-01-25 11:00:29 +01:00
parent 26891d3144
commit 3a29b4b341

View File

@@ -50,6 +50,8 @@ public class DeleteRepoNativeIT {
if (Os.current() == Os.WINDOWS) {
// On windows, we're using the service watcher which polls every 2s by default
Thread.sleep(2500);
} else {
Thread.sleep(200);
}
final TestClientOutput o2 = new TestClientOutput();