Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5aaf950b authored by Songchun Fan's avatar Songchun Fan
Browse files

[pm] fix VerifierDeviceIdentityTest

Bug: 208373220
Fixes: 208373220
Test: atest android.content.pm.VerifierDeviceIdentityTest
Change-Id: Id69918ab72d22530a5d4b32ea48d21af69802f2f
parent e3005501
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -89,8 +89,8 @@ public class VerifierDeviceIdentity implements Parcelable {
     * @return verifier device identity based on the input from the provided
     *         random number generator
     */
    @VisibleForTesting
    static VerifierDeviceIdentity generate(Random rng) {
    @VisibleForTesting(visibility = VisibleForTesting.Visibility.PRIVATE)
    public static VerifierDeviceIdentity generate(Random rng) {
        long identity = rng.nextLong();
        return new VerifierDeviceIdentity(identity);
    }