From 6c6f073bc2554015c9701040e25dc4fdcad9837c Mon Sep 17 00:00:00 2001 From: Chris Eager Date: Thu, 22 Apr 2021 15:09:20 -0500 Subject: [PATCH] Pass re-migration account in test --- .../textsecuregcm/storage/AccountsDynamoDbTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/src/test/java/org/whispersystems/textsecuregcm/storage/AccountsDynamoDbTest.java b/service/src/test/java/org/whispersystems/textsecuregcm/storage/AccountsDynamoDbTest.java index c6947fc81..83b96c1a1 100644 --- a/service/src/test/java/org/whispersystems/textsecuregcm/storage/AccountsDynamoDbTest.java +++ b/service/src/test/java/org/whispersystems/textsecuregcm/storage/AccountsDynamoDbTest.java @@ -366,7 +366,7 @@ class AccountsDynamoDbTest { device = generateDevice(1); Account accountRemigrationWithDifferentUuid = generateAccount("+14151112222", secondUuid, Collections.singleton(device)); - migrated = accountsDynamoDb.migrate(account).get(); + migrated = accountsDynamoDb.migrate(accountRemigrationWithDifferentUuid).get(); assertThat(migrated).isFalse(); verifyStoredState("+14151112222", firstUuid, account);