We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5c0c45 commit 7e48199Copy full SHA for 7e48199
crates/nu-cli/tests/completions/mod.rs
@@ -277,10 +277,10 @@ fn dotnu_completions() {
277
#[cfg(windows)]
278
let completion_str = "use `.\\dir_module\\sub module\\".to_string();
279
#[cfg(not(windows))]
280
- let completion_str = "use `./dir_module/sub module/".to_string();
+ let completion_str = "use `./dir_module/".to_string();
281
let suggestions = completer.complete(&completion_str, completion_str.len());
282
283
- match_suggestions(&vec!["sub.nu".into()], &suggestions);
+ match_suggestions(&vec!["mod.nu".into(), "sub module/`".into()], &suggestions);
284
285
// Test nested nu script, with ending '`'
286
0 commit comments