Skip to content

Commit 5397190

Browse files
committed
Adapt to Library changes
1 parent 0d43145 commit 5397190

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • crates/ark/src/lsp/completions/sources/unique

crates/ark/src/lsp/completions/sources/unique/comment.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ fn test_comment() {
142142

143143
use crate::lsp::document::Document;
144144

145-
let library = Library::new(vec![], None);
145+
let library = Library::new(vec![]);
146146

147147
// If not in a comment, return `None`
148148
let point = Point { row: 0, column: 1 };
@@ -203,7 +203,7 @@ fn test_roxygen_comment() {
203203
Namespace::default(),
204204
);
205205

206-
let library = Library::new(vec![], None);
206+
let library = Library::new(vec![]);
207207
let library = library.insert("roxygen2", package);
208208

209209
let point = Point { row: 0, column: 4 };

0 commit comments

Comments
 (0)