Add test for issue 195

This commit is contained in:
Andrew 2022-12-04 18:59:13 +13:00 committed by Josh Holmer
parent 1934587253
commit 38c26440e6
2 changed files with 12 additions and 0 deletions

BIN
tests/files/issue-195.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View file

@ -630,3 +630,15 @@ fn issue_182() {
BitDepth::One, BitDepth::One,
); );
} }
#[test]
fn issue_195() {
test_it_converts(
"tests/files/issue-195.png",
None,
ColorType::RGBA,
BitDepth::Eight,
ColorType::Indexed,
BitDepth::Eight,
);
}