Skip to content

Commit

Permalink
Merge branch 'fs/try_exists' of github.com:kevinkassimo/tokio into fs…
Browse files Browse the repository at this point in the history
…/try_exists
  • Loading branch information
kevinkassimo committed Dec 4, 2021
2 parents ce4253f + 2953e09 commit 0ddf5fc
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion tokio/tests/fs_try_exists.rs
Expand Up @@ -17,7 +17,6 @@ async fn try_exists() {
assert_eq!(fs::try_exists(existing_path).await.unwrap(), true);
assert_eq!(fs::try_exists(nonexisting_path).await.unwrap(), false);

// FreeBSD root user always has permission to stat.
#[cfg(not(freebsd))]
{
let permission_denied_directory_path = dir.path().join("baz");
Expand Down

0 comments on commit 0ddf5fc

Please sign in to comment.