aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.rs')
-rw-r--r--src/config.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/config.rs b/src/config.rs
index 94421f9..677b202 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -60,17 +60,17 @@ mod tests {
SearchPath {
path: "/path/to/projects".into(),
hidden: false,
- recurse: None,
+ max_depth: None,
},
SearchPath {
path: "/path/to/other_projects".into(),
hidden: true,
- recurse: Some(1),
+ max_depth: Some(1),
},
SearchPath {
path: "/path/to/another_project".into(),
hidden: false,
- recurse: Some(0),
+ max_depth: Some(0),
},
]),
}