From 17b9242f1a76562024983abe0c6252df495545e9 Mon Sep 17 00:00:00 2001 From: Serial <69764315+Serial-ATA@users.noreply.github.com> Date: Mon, 10 Jul 2023 13:21:30 -0400 Subject: [PATCH] Tests: Remove stray `todo!()`s in resolver test --- tests/taglib/test_fileref.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/taglib/test_fileref.rs b/tests/taglib/test_fileref.rs index c2e2e89d3..d2d25ff74 100644 --- a/tests/taglib/test_fileref.rs +++ b/tests/taglib/test_fileref.rs @@ -243,19 +243,19 @@ fn test_file_resolver() { } fn save_to(&self, _: &mut File) -> lofty::Result<()> { - todo!() + unimplemented!() } fn properties(&self) -> &Self::Properties { - todo!() + unimplemented!() } fn contains_tag(&self) -> bool { - todo!() + unimplemented!() } fn contains_tag_type(&self, _: TagType) -> bool { - todo!() + unimplemented!() } } @@ -265,11 +265,11 @@ fn test_file_resolver() { } fn primary_tag_type() -> TagType { - todo!() + unimplemented!() } fn supported_tag_types() -> &'static [TagType] { - todo!() + unimplemented!() } fn guess(_: &[u8]) -> Option {