You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description
Paparazzi tests fail with java.lang.ClassCastException when using compose-runtime 1.4.0-alpha02
Steps to Reproduce
Update compose-runtime to 1.4.0-alpha02
Try to run a Paparazzi test
Additional information:
The internals of Recomposer.kt were recently updated, which changed the type of snapshotInvalidations from a val MutableList to a var MutableSet.
Paparazzi retrieves this field by reflection and casts it to a MutableList, which causes a java.lang.ClassCastException due to the update.
The text was updated successfully, but these errors were encountered:
Description
Paparazzi tests fail with
java.lang.ClassCastException
when using compose-runtime 1.4.0-alpha02Steps to Reproduce
Additional information:
The internals of
Recomposer.kt
were recently updated, which changed the type ofsnapshotInvalidations
from aval MutableList
to avar MutableSet
.Paparazzi retrieves this field by reflection and casts it to a
MutableList
, which causes ajava.lang.ClassCastException
due to the update.The text was updated successfully, but these errors were encountered: