Skip to content

Commit

Permalink
fix test on windows - it's breaking now since #53 is fixed
Browse files Browse the repository at this point in the history
Or so it seems…
Life is too short to look into yet another windows-path related issue.
  • Loading branch information
Byron committed Jul 22, 2020
1 parent f7f2118 commit 1207bdd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/interactive/app_test/unit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 1207bdd

Please sign in to comment.