Remove issue-553 test which is still an open issue

This commit is contained in:
Andrew 2024-12-01 18:40:54 +13:00 committed by Alejandro González
parent 181532b877
commit ab80161ef0
2 changed files with 0 additions and 16 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 61 KiB

View file

@ -225,19 +225,3 @@ fn issue_182() {
BitDepth::One, BitDepth::One,
); );
} }
#[test]
fn issue_553() {
let png = test_it_converts(
"tests/files/issue-553.png",
None,
INDEXED,
BitDepth::Eight,
INDEXED,
BitDepth::Eight,
);
match png.ihdr.color_type {
ColorType::Indexed { palette } => assert_eq!(palette.len(), 256),
_ => unreachable!(),
};
}