summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/e2e/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/e2e/mod.rs b/tests/e2e/mod.rs
index ec0e348..e1a8f61 100644
--- a/tests/e2e/mod.rs
+++ b/tests/e2e/mod.rs
@@ -96,9 +96,9 @@ impl TestSpace {
// run n2 again, but when they flake, n2 is not noticing the changes. So maybe
// the filesystem changes happen so fast after n2 finishes that they're getting
// the same mtime?
- std::thread::sleep(std::time::Duration::from_millis(1));
+ std::thread::sleep(std::time::Duration::from_millis(10));
let result = cmd.current_dir(self.dir.path()).output();
- std::thread::sleep(std::time::Duration::from_millis(1));
+ std::thread::sleep(std::time::Duration::from_millis(10));
result
}