Update ShadowParcel to extend from org.robolectric library

Bug: 319052511

Test: atest SettingsRoboTest:com.android.settings.development
Change-Id: I751df93cfc9970279e9fd9872f988dff58f989d6
This commit is contained in:
Fan Wu
2024-01-15 16:58:19 +08:00
parent 4130a95c5d
commit 4d005993f6

View File

@@ -9,7 +9,7 @@ import org.robolectric.annotation.Implements;
* This class provides helpers to test logic that reads from parcels.
*/
@Implements(Parcel.class)
public class ShadowParcel {
public class ShadowParcel extends org.robolectric.shadows.ShadowParcel {
public static int sReadIntResult;
public static int sWriteIntResult;