mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 22:27:35 +00:00
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:
parent
da525ccc43
commit
20033d06d8
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue