Skip to content

Commit ff90e81

Browse files
committed
Fixing test warnings
1 parent bd2e544 commit ff90e81

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

crates/cli/src/commands/doctor.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ async fn check_parser_system(term: &Term, _fix: bool, quiet: bool) -> Result<(us
162162
}
163163

164164
/// Check semantic analysis system
165-
async fn check_semantic_system(term: &Term, fix: bool, quiet: bool) -> Result<(usize, usize)> {
165+
async fn check_semantic_system(term: &Term, _fix: bool, quiet: bool) -> Result<(usize, usize)> {
166166
if !quiet {
167167
term.write_line(&format!("{}", "Checking Semantic Analysis System...".bold()))?;
168168
}
@@ -222,7 +222,7 @@ async fn check_semantic_system(term: &Term, fix: bool, quiet: bool) -> Result<(u
222222
}
223223

224224
/// Check diff engine functionality
225-
async fn check_diff_engine(term: &Term, fix: bool, quiet: bool) -> Result<(usize, usize)> {
225+
async fn check_diff_engine(term: &Term, _fix: bool, quiet: bool) -> Result<(usize, usize)> {
226226
if !quiet {
227227
term.write_line(&format!("{}", "Checking Diff Engine...".bold()))?;
228228
}
@@ -287,7 +287,7 @@ async fn check_diff_engine(term: &Term, fix: bool, quiet: bool) -> Result<(usize
287287
}
288288

289289
/// Check language support
290-
async fn check_language_support(term: &Term, fix: bool, quiet: bool) -> Result<(usize, usize)> {
290+
async fn check_language_support(term: &Term, _fix: bool, quiet: bool) -> Result<(usize, usize)> {
291291
if !quiet {
292292
term.write_line(&format!("{}", "Checking Language Support...".bold()))?;
293293
}

0 commit comments

Comments
 (0)