diff options
author | Alex Pott | 2013-08-01 23:04:27 (GMT) |
---|---|---|
committer | Alex Pott | 2013-08-01 23:04:27 (GMT) |
commit | b4dd6690c8e0c6c5a67a471e139a274b99f94abd (patch) | |
tree | b88105316c18a2eb2169f1aeaccf1ac69a3cf673 | |
parent | a2f9a607248d52fdab9634a2b695eb4856af03b0 (diff) |
Issue #2041321 by Unitoch, oriol_e9g, droplet: Unnecessary translate strings.
-rw-r--r-- | core/modules/dblog/lib/Drupal/dblog/Tests/DbLogTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/modules/dblog/lib/Drupal/dblog/Tests/DbLogTest.php b/core/modules/dblog/lib/Drupal/dblog/Tests/DbLogTest.php index 1c4e69c..59a40c3 100644 --- a/core/modules/dblog/lib/Drupal/dblog/Tests/DbLogTest.php +++ b/core/modules/dblog/lib/Drupal/dblog/Tests/DbLogTest.php @@ -350,13 +350,13 @@ class DbLogTest extends WebTestBase { $this->drupalGet('admin/reports/access-denied'); $this->assertResponse(200); // Verify that the 'access denied' event was recorded. - $this->assertText(t('admin/reports/dblog'), 'DBLog event was recorded: [access denied]'); + $this->assertText('admin/reports/dblog', 'DBLog event was recorded: [access denied]'); // View the database log page-not-found report page. $this->drupalGet('admin/reports/page-not-found'); $this->assertResponse(200); // Verify that the 'page not found' event was recorded. - $this->assertText(t('node/@nid', array('@nid' => $node->id())), 'DBLog event was recorded: [page not found]'); + $this->assertText('node/' . $node->id(), 'DBLog event was recorded: [page not found]'); } /** |