Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/tests/integration.rs')
| -rw-r--r-- | helix-term/tests/integration.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-term/tests/integration.rs b/helix-term/tests/integration.rs index 469242e4..35214bcb 100644 --- a/helix-term/tests/integration.rs +++ b/helix-term/tests/integration.rs @@ -2,7 +2,7 @@ mod test { mod helpers; - use helix_core::{syntax::config::AutoPairConfig, Selection}; + use helix_core::{syntax::AutoPairConfig, Selection}; use helix_term::config::Config; use indoc::indoc; @@ -17,9 +17,9 @@ mod test { mod auto_indent; mod auto_pairs; - mod command_line; mod commands; mod languages; mod movement; + mod prompt; mod splits; } |