chore: rename tests/data as tests/fixtures

This commit is contained in:
Nathan Fiedler
2024-05-25 15:13:05 -07:00
parent a824ea19ac
commit dd69c64e43
8 changed files with 24 additions and 24 deletions

View File

@ -23,7 +23,7 @@ fn resize(filepath: &str) -> Result<Vec<u8>, MagickError> {
}
fn main() {
match resize("tests/data/snow-covered-cat.jpg") {
match resize("tests/fixtures/snow-covered-cat.jpg") {
Ok(bytes) => {
fs::write("thumbnail-cat.jpg", bytes).expect("write failed");
}