Skip to content

Commit

Permalink
Fix main.rs tests clippy lints
Browse files Browse the repository at this point in the history
  • Loading branch information
willbush committed Mar 26, 2024
1 parent 3b4cedc commit d20e68a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ mod tests {
let temp_nixpkgs = tempdir()?;
let path = temp_nixpkgs.path();

if is_case_insensitive_fs(&path)? {
if is_case_insensitive_fs(path)? {
eprintln!("We're on a case-insensitive filesystem, skipping case-sensitivity test");
return Ok(());
}
Expand All @@ -223,7 +223,7 @@ mod tests {

test_nixpkgs(
"case_sensitive",
&path,
path,
"pkgs/by-name/fo: Duplicate case-sensitive package directories \"foO\" and \"foo\".\nThis PR introduces the problems listed above. Please fix them before merging, otherwise the base branch would break.\n",
)?;

Expand Down

0 comments on commit d20e68a

Please sign in to comment.