From 7de21a845316874d9598e81a482ab96072e910a7 Mon Sep 17 00:00:00 2001 From: Serial <69764315+Serial-ATA@users.noreply.github.com> Date: Thu, 26 Oct 2023 13:22:19 -0400 Subject: [PATCH] Tests: Ignore TagLib ID3v2.3 conversion tests for now --- tests/taglib/test_aiff.rs | 1 + tests/taglib/test_id3v2.rs | 3 +++ 2 files changed, 4 insertions(+) diff --git a/tests/taglib/test_aiff.rs b/tests/taglib/test_aiff.rs index c1d15c00e..d30a3096b 100644 --- a/tests/taglib/test_aiff.rs +++ b/tests/taglib/test_aiff.rs @@ -93,6 +93,7 @@ fn test_save_id3v2() { } #[test] +#[ignore] fn test_save_id3v23() { todo!("Support writing ID3v2.3 tags") } diff --git a/tests/taglib/test_id3v2.rs b/tests/taglib/test_id3v2.rs index 3192d0fe0..7c1bb97fb 100644 --- a/tests/taglib/test_id3v2.rs +++ b/tests/taglib/test_id3v2.rs @@ -30,11 +30,13 @@ fn test_unsynch_decode() { } #[test] +#[ignore] fn test_downgrade_utf8_for_id3v23_1() { todo!("We don't support downgrading 2.4 tags to 2.3") } #[test] +#[ignore] fn test_downgrade_utf8_for_id3v23_2() { todo!("We don't support downgrading 2.4 tags to 2.3") } @@ -835,6 +837,7 @@ fn test_update_full_date22() { } #[test] +#[ignore] fn test_downgrade_to_23() { todo!("We don't support downgrading 2.4 tags to 2.3") }