summaryrefslogtreecommitdiffstats
path: root/atuin-common
diff options
context:
space:
mode:
Diffstat (limited to 'atuin-common')
-rw-r--r--atuin-common/src/utils.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/atuin-common/src/utils.rs b/atuin-common/src/utils.rs
index 889c78116..1e0f5a9ae 100644
--- a/atuin-common/src/utils.rs
+++ b/atuin-common/src/utils.rs
@@ -147,6 +147,7 @@ mod tests {
use std::collections::HashSet;
+ #[cfg(not(windows))]
#[test]
fn test_dirs() {
// these tests need to be run sequentially to prevent race condition
@@ -169,7 +170,9 @@ mod tests {
fn test_config_dir() {
env::set_var("HOME", "/home/user");
env::remove_var("XDG_CONFIG_HOME");
+
assert_eq!(config_dir(), PathBuf::from("/home/user/.config/atuin"));
+
env::remove_var("HOME");
}