We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3edf0fe commit 74704c7Copy full SHA for 74704c7
gix-path/tests/realpath/mod.rs
@@ -18,7 +18,7 @@ fn fuzzed_timeout() -> crate::Result {
18
}
19
));
20
assert!(
21
- start.elapsed() < Duration::from_millis(500),
+ start.elapsed() < Duration::from_millis(if cfg!(windows) { 1000 } else { 500 }),
22
"took too long: {:.02} , we can't take too much time for this, and should keep the amount of work reasonable\
23
as paths can be part of URls which sometimes are canonicalized",
24
start.elapsed().as_secs_f32()
0 commit comments