summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorSebastian Thiel <sthiel@thoughtworks.com>2019-06-03 07:38:50 +0530
committerSebastian Thiel <sthiel@thoughtworks.com>2019-06-03 07:38:50 +0530
commit6cf44a1658f4f34ffa295b49fbb4cc6cb7c75b9f (patch)
treeb8dd3eac3521713d14a7f11d6a67c70c49fe0919 /tests
parent2ce606f607fa967f94d49c5413c4b347e628e88e (diff)
refactor
Diffstat (limited to 'tests')
-rw-r--r--tests/interactive.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/interactive.rs b/tests/interactive.rs
index 849ffa3..14684e4 100644
--- a/tests/interactive.rs
+++ b/tests/interactive.rs
@@ -18,7 +18,7 @@ mod app {
let expected_tree = sample_01_tree();
assert_eq!(
- debug(app.tree),
+ debug(app.traversal.tree),
debug(expected_tree),
"filesystem graph is stable and matches the directory structure"
);
@@ -31,7 +31,7 @@ mod app {
let expected_tree = sample_02_tree();
assert_eq!(
- debug(app.tree),
+ debug(app.traversal.tree),
debug(expected_tree),
"filesystem graph is stable and matches the directory structure"
);