summaryrefslogtreecommitdiff
path: root/modules/locale/locale.test
diff options
context:
space:
mode:
Diffstat (limited to 'modules/locale/locale.test')
-rw-r--r--modules/locale/locale.test8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/locale/locale.test b/modules/locale/locale.test
index 9a800303a..7932bada1 100644
--- a/modules/locale/locale.test
+++ b/modules/locale/locale.test
@@ -1268,8 +1268,8 @@ class LocalePathFunctionalTest extends DrupalWebTestCase {
$path = 'admin/config/search/path/add';
$english_path = $this->randomName(8);
$edit = array(
- 'src' => 'node/' . $node->nid,
- 'dst' => $english_path,
+ 'source' => 'node/' . $node->nid,
+ 'alias' => $english_path,
'language' => 'en',
);
$this->drupalPost($path, $edit, t('Create new alias'));
@@ -1277,8 +1277,8 @@ class LocalePathFunctionalTest extends DrupalWebTestCase {
// Create a path alias in new custom language.
$custom_language_path = $this->randomName(8);
$edit = array(
- 'src' => 'node/' . $node->nid,
- 'dst' => $custom_language_path,
+ 'source' => 'node/' . $node->nid,
+ 'alias' => $custom_language_path,
'language' => $langcode,
);
$this->drupalPost($path, $edit, t('Create new alias'));