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

Commit f26a98ea authored by Kenny Root's avatar Kenny Root Committed by Android (Google) Code Review
Browse files

Merge "RebootEscrowKey: use bytes for equivalence"

parents b3156d40 511b45b5
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -75,7 +75,7 @@ public class RebootEscrowDataTest {


        assertThat(actual.getSpVersion(), is(expected.getSpVersion()));
        assertThat(actual.getSpVersion(), is(expected.getSpVersion()));
        assertThat(actual.getIv(), is(expected.getIv()));
        assertThat(actual.getIv(), is(expected.getIv()));
        assertThat(actual.getKey(), is(expected.getKey()));
        assertThat(actual.getKey().getKeyBytes(), is(expected.getKey().getKeyBytes()));
        assertThat(actual.getBlob(), is(expected.getBlob()));
        assertThat(actual.getBlob(), is(expected.getBlob()));
        assertThat(actual.getSyntheticPassword(), is(expected.getSyntheticPassword()));
        assertThat(actual.getSyntheticPassword(), is(expected.getSyntheticPassword()));
    }
    }