From af3b36c3546212b61cb89f6ea9dc7d9b68c7db1b Mon Sep 17 00:00:00 2001 From: MechaCat02 Date: Sat, 12 Sep 2026 16:45:05 +0200 Subject: [PATCH] fix(lint): PathBuf is unused once the merge takes #22's shared disc_root Co-Authored-By: Claude Opus 5 --- crates/sylpheed-formats/tests/movie_manifest_disc.rs | 2 +- crates/sylpheed-formats/tests/slb_disc.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/sylpheed-formats/tests/movie_manifest_disc.rs b/crates/sylpheed-formats/tests/movie_manifest_disc.rs index 73b90e02..00a57915 100644 --- a/crates/sylpheed-formats/tests/movie_manifest_disc.rs +++ b/crates/sylpheed-formats/tests/movie_manifest_disc.rs @@ -1,7 +1,7 @@ //! Real-disc test for the movie manifest → voice binding. Skipped without //! `SYLPHEED_DISC`. -use std::path::{Path, PathBuf}; +use std::path::Path; use sylpheed_formats::movie_manifest; use sylpheed_formats::slb::VoiceLang; diff --git a/crates/sylpheed-formats/tests/slb_disc.rs b/crates/sylpheed-formats/tests/slb_disc.rs index 2a6964aa..b0814e4d 100644 --- a/crates/sylpheed-formats/tests/slb_disc.rs +++ b/crates/sylpheed-formats/tests/slb_disc.rs @@ -3,7 +3,7 @@ use std::fs::File; use std::io::{Read, Seek, SeekFrom}; -use std::path::{Path, PathBuf}; +use std::path::Path; use sylpheed_formats::hash::name_hash; use sylpheed_formats::slb::{self, VoiceLang};