diff options
author | Skyler Hawthorne | 2022-11-11 04:58:03 +0000 |
---|---|---|
committer | Michael Davis | 2023-03-20 23:34:40 +0000 |
commit | 4bdeb9927b5aa0fb71484faae8f3aa9c5ce67381 (patch) | |
tree | 6c348fd5ff2d937560df81ced6572cfa8b14050c /helix-term/tests/integration.rs | |
parent | d3b051d28ea62c313fc72583d04f2a897e8d6f40 (diff) |
migrate test_with_config to use AppBuilder
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 be1bfc2c..cec374af 100644 --- a/helix-term/tests/integration.rs +++ b/helix-term/tests/integration.rs @@ -4,8 +4,8 @@ mod test { use std::path::PathBuf; - use helix_core::{syntax::AutoPairConfig, Position, Selection}; - use helix_term::{args::Args, config::Config}; + use helix_core::{syntax::AutoPairConfig, Selection}; + use helix_term::config::Config; use indoc::indoc; |