Skip to content

Commit

Permalink
Fix up tests
Browse files Browse the repository at this point in the history
  • Loading branch information
DavisVaughan committed Dec 18, 2024
1 parent 491bb6a commit 8b64363
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/lsp/src/tower_lsp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ mod tests {
text_document_sync,
..
} => {
assert_eq!(position_encoding, None);
assert_eq!(position_encoding, Some(PositionEncodingKind::UTF16));
assert_eq!(text_document_sync, Some(TextDocumentSyncCapability::Kind(TextDocumentSyncKind::INCREMENTAL)));
});

Expand Down
2 changes: 1 addition & 1 deletion crates/workspace/src/resolve.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ impl<T> PathResolver<T> {
///
/// The [`BTreeMap`] is an ordered map, so if you do:
///
/// ```
/// ```text
/// resolver.add("a/b", value1)
/// resolver.add("a/b/c", value2)
/// resolver.add("a/b/d", value3)
Expand Down

0 comments on commit 8b64363

Please sign in to comment.