diff --git a/display_list/display_list_image_filter_unittests.cc b/display_list/display_list_image_filter_unittests.cc index 0edddecffda40..c447d52e81586 100644 --- a/display_list/display_list_image_filter_unittests.cc +++ b/display_list/display_list_image_filter_unittests.cc @@ -810,8 +810,11 @@ TEST(DisplayListImageFilter, LocalImageFilterBounds) { auto sk_local_filter = sk_filters[i]->makeWithLocalMatrix(m); auto dl_local_filter = dl_filters[i]->makeWithLocalMatrix(m); if (!sk_local_filter || !dl_local_filter) { - ASSERT_TRUE(!sk_local_filter); - ASSERT_TRUE(!dl_local_filter); + // Temporarily relax the equivalence testing to allow Skia to expand + // their behavior. Once the Skia fixes are rolled in, the + // DlImageFilter should adapt to the new rules. + // See https://github.com/flutter/flutter/issues/114723 + ASSERT_TRUE(sk_local_filter || !dl_local_filter); continue; } {