Tests/LibGfx: Fix test_gif test case

We should expect the GIF image to be animated, therefore fix that
condition.
This commit is contained in:
Liav A 2023-01-20 18:41:21 +02:00 committed by Linus Groh
parent da525ccc43
commit 20033d06d8
Notes: sideshowbarker 2024-07-17 01:28:43 +09:00

View file

@ -48,7 +48,7 @@ TEST_CASE(test_gif)
EXPECT_EQ(plugin_decoder->initialize(), true);
EXPECT(plugin_decoder->frame_count());
EXPECT(!plugin_decoder->is_animated());
EXPECT(plugin_decoder->is_animated());
EXPECT(!plugin_decoder->loop_count());
auto frame = plugin_decoder->frame(1).release_value_but_fixme_should_propagate_errors();