summaryrefslogtreecommitdiff
path: root/modules/path
diff options
context:
space:
mode:
authorJennifer Hodgdon <yahgrp@poplarware.com>2013-04-26 08:39:06 -0700
committerJennifer Hodgdon <yahgrp@poplarware.com>2013-04-26 08:39:06 -0700
commit1db5aed6291756b5869de074021a909899c17579 (patch)
tree12b5ddfedc040b1febf29adeeb7279f941323a87 /modules/path
parent23502821f7bc0e6591c1d712dfe96c05e05cda27 (diff)
downloadbrdo-1db5aed6291756b5869de074021a909899c17579.tar.gz
brdo-1db5aed6291756b5869de074021a909899c17579.tar.bz2
Issue #1797360 by dcam, izus, xjm, Lars Toomre: Remove t() from test asserts in locale and path module backported from D8 language module
Diffstat (limited to 'modules/path')
-rw-r--r--modules/path/path.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/path/path.test b/modules/path/path.test
index f5c303c3a..8bdbaf6de 100644
--- a/modules/path/path.test
+++ b/modules/path/path.test
@@ -508,8 +508,8 @@ class PathMonolingualTestCase extends DrupalWebTestCase {
$this->drupalPost('admin/config/regional/language', $edit, t('Save configuration'));
// Verify that French is the only language.
- $this->assertFalse(drupal_multilingual(), t('Site is mono-lingual'));
- $this->assertEqual(language_default('language'), 'fr', t('French is the default language'));
+ $this->assertFalse(drupal_multilingual(), 'Site is mono-lingual');
+ $this->assertEqual(language_default('language'), 'fr', 'French is the default language');
// Set language detection to URL.
$edit = array('language[enabled][locale-url]' => TRUE);