Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
asterite committed Jul 3, 2024
1 parent 5f8f9b4 commit 9930c11
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tooling/lsp/src/requests/goto_definition.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ mod goto_definition_tests {
text_document: lsp_types::TextDocumentIdentifier {
uri: noir_text_document.clone(),
},
position: position,
position,
},
work_done_progress_params: Default::default(),
partial_result_params: Default::default(),
Expand Down Expand Up @@ -138,7 +138,7 @@ mod goto_definition_tests {
end: Position { line: 1, character: 27 },
},
)
.await
.await;
}

#[test]
Expand All @@ -152,7 +152,7 @@ mod goto_definition_tests {
end: Position { line: 0, character: 0 },
},
)
.await
.await;
}

#[test]
Expand All @@ -166,7 +166,7 @@ mod goto_definition_tests {
end: Position { line: 2, character: 10 },
},
)
.await
.await;
}

#[test]
Expand All @@ -180,7 +180,7 @@ mod goto_definition_tests {
end: Position { line: 0, character: 7 },
},
)
.await
.await;
}

#[test]
Expand All @@ -194,6 +194,6 @@ mod goto_definition_tests {
end: Position { line: 0, character: 0 },
},
)
.await
.await;
}
}

0 comments on commit 9930c11

Please sign in to comment.