mirror of
https://github.com/Hopiu/lychee.git
synced 2026-04-01 12:20:22 +00:00
Fix lints and test on Linux
This commit is contained in:
parent
54e1d3e078
commit
428df23c1c
2 changed files with 3 additions and 3 deletions
|
|
@ -85,7 +85,7 @@ impl Display for ResponseStats {
|
|||
write_stat(f, "🚫 Errors", self.errors + self.failures)?;
|
||||
|
||||
if !&self.fail_map.is_empty() {
|
||||
writeln!(f, "")?;
|
||||
writeln!(f)?;
|
||||
}
|
||||
for (input, uris) in &self.fail_map {
|
||||
writeln!(f, "❯❯ {}", input)?;
|
||||
|
|
@ -93,6 +93,6 @@ impl Display for ResponseStats {
|
|||
writeln!(f, " {}", uri)?
|
||||
}
|
||||
}
|
||||
writeln!(f, "")
|
||||
writeln!(f)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -188,7 +188,7 @@ mod cli {
|
|||
.arg("--glob-ignore-case")
|
||||
.assert()
|
||||
.success()
|
||||
.stdout(contains("Total: 2"));
|
||||
.stdout(contains("Total............2"));
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue