diff options
author | Liav A <liavalb@gmail.com> | 2023-01-20 18:41:21 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-01-20 17:05:09 +0000 |
commit | 20033d06d8c1276ee4caab72f42aaee14ca256af (patch) | |
tree | a5c4a52ab1135464c8500d4ba3f4d97ec64b55fb /Tests | |
parent | da525ccc433284013e81e09d8fe1b76183e3db4a (diff) | |
download | serenity-20033d06d8c1276ee4caab72f42aaee14ca256af.zip |
Tests/LibGfx: Fix test_gif test case
We should expect the GIF image to be animated, therefore fix that
condition.
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/LibGfx/TestImageDecoder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/LibGfx/TestImageDecoder.cpp b/Tests/LibGfx/TestImageDecoder.cpp index 47e66ebff5..c2d8c7b36b 100644 --- a/Tests/LibGfx/TestImageDecoder.cpp +++ b/Tests/LibGfx/TestImageDecoder.cpp @@ -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(); |