Skip to content

Commit 256e011

Browse files
committed
Fixed integration tests
1 parent d0f2c2f commit 256e011

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

helix-term/tests/test/auto_indent.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ async fn auto_indent_c() -> anyhow::Result<()> {
77
files: vec![(PathBuf::from("foo.c"), Position::default())],
88
..Default::default()
99
},
10-
Config::default(),
10+
Config::with_default_keys(),
1111
// switches to append mode?
1212
(
1313
helpers::platform_line("void foo() {#[|}]#").as_ref(),

helix-term/tests/test/auto_pairs.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ async fn auto_pairs_basic() -> anyhow::Result<()> {
1111
auto_pairs: AutoPairConfig::Enable(false),
1212
..Default::default()
1313
},
14-
..Default::default()
14+
..Config::with_default_keys()
1515
},
1616
("#[\n|]#", "i(<esc>", "(#[|\n]#"),
1717
)

0 commit comments

Comments
 (0)