Update tests
diff --git a/snapshot-tests/src/androidTest/java/com/airbnb/lottie/snapshots/tests/ClipChildrenTestCase.kt b/snapshot-tests/src/androidTest/java/com/airbnb/lottie/snapshots/tests/ClipChildrenTestCase.kt
index cee4ad3..ff12541 100644
--- a/snapshot-tests/src/androidTest/java/com/airbnb/lottie/snapshots/tests/ClipChildrenTestCase.kt
+++ b/snapshot-tests/src/androidTest/java/com/airbnb/lottie/snapshots/tests/ClipChildrenTestCase.kt
@@ -33,7 +33,6 @@
                     renderMode = renderMode,
                     modifier = Modifier
                         .size(200.dp, 100.dp)
-                        .clipToBounds()
                 )
             }
         }
@@ -49,6 +48,7 @@
                     0.7f,
                     contentScale = ContentScale.Crop,
                     renderMode = renderMode,
+                    clipToCompositionBounds = false,
                     modifier = Modifier
                         .size(200.dp, 100.dp)
                 )
@@ -56,7 +56,6 @@
         }
 
         val binding = ClipChildrenBinding.inflate(LayoutInflater.from(context))
-        binding.root.clipChildren = true
         binding.animationView.setComposition(composition)
         binding.root.measureAndLayout()
 
@@ -67,7 +66,7 @@
 
         val bitmap2 = bitmapPool.acquire(binding.root.width, binding.root.height)
         canvas.setBitmap(bitmap2)
-        binding.root.clipChildren = false
+        binding.animationView.clipToCompositionBounds = false
         binding.root.draw(canvas)
         snapshotter.record(bitmap1, "Clip Children", "Dont Clip")
 
diff --git a/snapshot-tests/src/main/res/layout/clip_children.xml b/snapshot-tests/src/main/res/layout/clip_children.xml
index 59ad6f6..bfc4e0f 100644
--- a/snapshot-tests/src/main/res/layout/clip_children.xml
+++ b/snapshot-tests/src/main/res/layout/clip_children.xml
@@ -2,7 +2,7 @@
 <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
     android:layout_width="400dp"
     android:layout_height="400dp"
-    android:orientation="vertical">
+    android:clipChildren="false">
 
     <com.airbnb.lottie.LottieAnimationView
         android:id="@+id/animation_view"
diff --git a/snapshot-tests/src/main/res/layout/film_strip_view.xml b/snapshot-tests/src/main/res/layout/film_strip_view.xml
index e2c7b6f..26ebc8e 100644
--- a/snapshot-tests/src/main/res/layout/film_strip_view.xml
+++ b/snapshot-tests/src/main/res/layout/film_strip_view.xml
@@ -59,6 +59,5 @@
         android:id="@+id/animation_9"
         android:layout_width="@dimen/film_strip_size"
         android:layout_height="@dimen/film_strip_size"
-        app:lottie_clipToCompositionBounds="false"
         app:lottie_renderMode="hardware" />
 </GridLayout>