summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/interactive/app_test/unit.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/interactive/app_test/unit.rs b/src/interactive/app_test/unit.rs
index 8910025..9793fe8 100644
--- a/src/interactive/app_test/unit.rs
+++ b/src/interactive/app_test/unit.rs
@@ -4,7 +4,8 @@ use crate::interactive::app_test::utils::{
use anyhow::Result;
use pretty_assertions::assert_eq;
-#[test]
+// Won't work on windows as there are backslashes in the paths :D
+#[cfg_attr(windows, ignore)]
fn it_can_handle_ending_traversal_reaching_top_but_skipping_levels() -> Result<()> {
let (_, app) = initialized_app_and_terminal_from_fixture(&["sample-01"])?;
let expected_tree = sample_01_tree();