summaryrefslogtreecommitdiff
path: root/modules/locale
diff options
context:
space:
mode:
authorJennifer Hodgdon <yahgrp@poplarware.com>2013-04-26 08:53:13 -0700
committerJennifer Hodgdon <yahgrp@poplarware.com>2013-04-26 08:53:13 -0700
commit8ee9e5ab409021fbd250c7a093691c5a10f36ae2 (patch)
tree7db56cae21674a4edfe7dd5bd5a39484803580a7 /modules/locale
parentb61b0d72791f4e4f78acced2efd04a5dbe0f2723 (diff)
downloadbrdo-8ee9e5ab409021fbd250c7a093691c5a10f36ae2.tar.gz
brdo-8ee9e5ab409021fbd250c7a093691c5a10f36ae2.tar.bz2
Issue #1797926 by dcam, izus, Lars Toomre: Remove t() from test asserts in misc system tests
Diffstat (limited to 'modules/locale')
-rw-r--r--modules/locale/locale.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/locale/locale.test b/modules/locale/locale.test
index e4821d13c..d9caa9e02 100644
--- a/modules/locale/locale.test
+++ b/modules/locale/locale.test
@@ -2934,10 +2934,10 @@ class LocaleDateFormatsFunctionalTest extends DrupalWebTestCase {
// Configure format for the node posted date changes with the language.
$this->drupalGet('node/' . $node->nid);
$english_date = format_date($node->created, 'custom', 'j M Y');
- $this->assertText($english_date, t('English date format appears'));
+ $this->assertText($english_date, 'English date format appears');
$this->drupalGet('fr/node/' . $node->nid);
$french_date = format_date($node->created, 'custom', 'd.m.Y');
- $this->assertText($french_date, t('French date format appears'));
+ $this->assertText($french_date, 'French date format appears');
}
}