diff --git a/core/modules/node/src/Tests/NodeRevisionsAuthorTest.php b/core/modules/node/src/Tests/NodeRevisionsAuthorTest.php index b642843..972ac9d 100644 --- a/core/modules/node/src/Tests/NodeRevisionsAuthorTest.php +++ b/core/modules/node/src/Tests/NodeRevisionsAuthorTest.php @@ -115,7 +115,7 @@ function testRevisions() { '!orignid' => $this->originalNode->getRevisionid() ]); $this->drupalPostForm($uri, [], t('Revert')); - $this->assertRaw(t('@type %title has been reverted back to the revision from %revision-date.', [ + $this->assertRaw(t('@type %title has been reverted to the revision from %revision-date.', [ '@type' => 'Basic page', '%title' => $this->originalNode->label(), '%revision-date' => format_date($this->originalNode->getRevisionCreationTime()), @@ -138,7 +138,7 @@ function testRevisions() { '!revisednid' => $this->revisedNode->getRevisionid() ]); $this->drupalPostForm($uri, [], t('Revert')); - $this->assertRaw(t('@type %title has been reverted back to the revision from %revision-date.', [ + $this->assertRaw(t('@type %title has been reverted to the revision from %revision-date.', [ '@type' => 'Basic page', '%title' => $this->revisedNode->label(), '%revision-date' => format_date($this->revisedNode->getRevisionCreationTime()),