diff --git a/core/tauri/src/api/file.rs b/core/tauri/src/api/file.rs index 8b0f4dc37..1699c7c35 100644 --- a/core/tauri/src/api/file.rs +++ b/core/tauri/src/api/file.rs @@ -48,8 +48,10 @@ mod test { assert!(res.is_err()); - #[cfg(not(windows))] if let Error::Io(e) = res.unwrap_err() { + #[cfg(windows)] + assert_eq!(e.to_string(), "Access is denied. (os error 5)".to_string()); + #[cfg(not(windows))] assert_eq!(e.to_string(), "Is a directory (os error 21)".to_string()); } } @@ -86,9 +88,8 @@ mod test { assert!(res.is_err()); + #[cfg(not(windows))] if let Error::Io(e) = res.unwrap_err() { - #[cfg(windows)] - assert_eq!(e.to_string(), "Access is denied. (os error 5)".to_string()); #[cfg(not(windows))] assert_eq!(e.to_string(), "Is a directory (os error 21)".to_string()); }