Skip to content

Commit

Permalink
[autofix.ci] apply automated fixes (attempt 2/3)
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Nov 3, 2023
1 parent 8180276 commit 8e22c06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/macos/icons.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ mod tests {
let path = PathBuf::from("/System/Library/CoreServices/Finder.app/Contents/MacOS/Finder");
let mut icon_cache = IconCache::default();
let vec = icon_cache.get_png(path).unwrap();
assert!(vec.len() > 0);
assert!(!vec.is_empty());
dbg!(vec.len());
let base64_png = general_purpose::STANDARD.encode(&vec);
let base64_png = general_purpose::STANDARD.encode(vec);
dbg!(base64_png);
}
}

0 comments on commit 8e22c06

Please sign in to comment.