Skip to content

Commit

Permalink
tests: separate autocmds
Browse files Browse the repository at this point in the history
it just started to fail because of neovim/neovim@139e6f6
  • Loading branch information
noib3 committed Oct 11, 2023
1 parent 297def7 commit e4cabf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/api/autocmd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ fn set_exec_del_autocmd() {
.callback(|_args| Ok::<_, oxi::Error>(false))
.build();

let id = api::create_autocmd(["BufAdd, BufDelete"], &opts)
let id = api::create_autocmd(["BufAdd", "BufDelete"], &opts)
.expect("create_autocmd failed");

assert_eq!(
Expand Down

0 comments on commit e4cabf2

Please sign in to comment.