diff --git a/src/Form/RevisionRevertForm.php b/src/Form/RevisionRevertForm.php
index 9bd0a2012081d1878475f2a666d864b99cad5248..de2e049a50aec18a043f84690f1bba2b55a799da 100644
--- a/src/Form/RevisionRevertForm.php
+++ b/src/Form/RevisionRevertForm.php
@@ -120,7 +120,7 @@ class RevisionRevertForm extends ConfirmFormBase {
     // The revision timestamp will be updated when the revision is saved. Keep
     // the original one for the confirmation message.
 
-    $this->revision = $this->prepareRevisionRevert($this->revision);
+    $this->revision = $this->prepareRevision($this->revision);
     if ($this->revision instanceof EntityRevisionLogInterface) {
       $original_revision_timestamp = $this->revision->getRevisionCreationTime();
 
@@ -149,7 +149,7 @@ class RevisionRevertForm extends ConfirmFormBase {
    * @return \Drupal\Core\Entity\RevisionableInterface
    *   The prepared revision ready to be stored.
    */
-  protected function prepareRevisionRevert(RevisionableInterface $revision) {
+  protected function prepareRevision(RevisionableInterface $revision) {
     $revision->setNewRevision();
     $revision->isDefaultRevision(TRUE);