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
Notes:
sideshowbarker
2024-07-17 01:28:43 +09:00
Author: https://github.com/supercomputer7 Commit: https://github.com/SerenityOS/serenity/commit/20033d06d8 Pull-request: https://github.com/SerenityOS/serenity/pull/17105
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
Reference in a new issue