diff --git a/core/src/test/java/google/registry/ui/server/registrar/RegistryLockPostActionTest.java b/core/src/test/java/google/registry/ui/server/registrar/RegistryLockPostActionTest.java index bc0c3e4c5..1eb6b13c3 100644 --- a/core/src/test/java/google/registry/ui/server/registrar/RegistryLockPostActionTest.java +++ b/core/src/test/java/google/registry/ui/server/registrar/RegistryLockPostActionTest.java @@ -129,7 +129,7 @@ public final class RegistryLockPostActionTest { .put("relockDurationMillis", Duration.standardDays(1).getMillis()) .build(); Map response = action.handleJsonRequest(request); - assertSuccess(response, "unlock", "Marla.Singer@crr.com"); + assertSuccess(response, "unlock", "Marla.Singer.RegistryLock@crr.com"); RegistryLock savedUnlockRequest = getMostRecentRegistryLockByRepoId(domain.getRepoId()).get(); assertThat(savedUnlockRequest.getRelockDuration()) .isEqualTo(Optional.of(Duration.standardDays(1)));