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

Commit 30760c4a authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix RecoverableKeyStore unit tests."

parents 5105bf7c ae6ec6d2
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -228,6 +228,7 @@ public class KeySyncTask implements Runnable {
                counterId = generateAndStoreCounterId(recoveryAgentUid);
            }
        }

        byte[] vaultParams = KeySyncUtils.packVaultParams(
                publicKey,
                counterId,
+1 −1
Original line number Diff line number Diff line
@@ -330,7 +330,7 @@ public class RecoverableKeyStoreManagerTest {
                    TEST_VAULT_CHALLENGE,
                    ImmutableList.of());
            fail("should have thrown");
        } catch (ServiceSpecificException e) {
        } catch (UnsupportedOperationException e) {
            assertThat(e.getMessage()).startsWith(
                    "Only a single KeychainProtectionParams is supported");
        }
+1 −1
Original line number Diff line number Diff line
@@ -125,7 +125,7 @@ public class RecoverySessionStorageTest {

        storage.remove(TEST_USER_ID, TEST_SESSION_ID);

        assertNotNull(storage.get(TEST_USER_ID, TEST_SESSION_ID));
        assertNotNull(storage.get(TEST_USER_ID, otherSessionId));
    }

    @Test