summaryrefslogtreecommitdiff
path: root/modules/simpletest/tests/form.test
diff options
context:
space:
mode:
Diffstat (limited to 'modules/simpletest/tests/form.test')
-rw-r--r--modules/simpletest/tests/form.test12
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/simpletest/tests/form.test b/modules/simpletest/tests/form.test
index a73ac16c2..279b53e67 100644
--- a/modules/simpletest/tests/form.test
+++ b/modules/simpletest/tests/form.test
@@ -1132,13 +1132,13 @@ class FormsRebuildTestCase extends DrupalWebTestCase {
}
/**
- * Tests that a form's action is retained after an AJAX submission.
+ * Tests that a form's action is retained after an Ajax submission.
*
- * The 'action' attribute of a form should not change after an AJAX submission
- * followed by a non-AJAX submission, which triggers a validation error.
+ * The 'action' attribute of a form should not change after an Ajax submission
+ * followed by a non-Ajax submission, which triggers a validation error.
*/
function testPreserveFormActionAfterAJAX() {
- // Create a multi-valued field for 'page' nodes to use for AJAX testing.
+ // Create a multi-valued field for 'page' nodes to use for Ajax testing.
$field_name = 'field_ajax_test';
$field = array(
'field_name' => $field_name,
@@ -1157,14 +1157,14 @@ class FormsRebuildTestCase extends DrupalWebTestCase {
$this->web_user = $this->drupalCreateUser(array('create page content'));
$this->drupalLogin($this->web_user);
- // Get the form for adding a 'page' node. Submit an "add another item" AJAX
+ // Get the form for adding a 'page' node. Submit an "add another item" Ajax
// submission and verify it worked by ensuring the updated page has two text
// field items in the field for which we just added an item.
$this->drupalGet('node/add/page');
$this->drupalPostAJAX(NULL, array(), array('field_ajax_test_add_more' => t('Add another item')), 'system/ajax', array(), array(), 'page-node-form');
$this->assert(count($this->xpath('//div[contains(@class, "field-name-field-ajax-test")]//input[@type="text"]')) == 2, t('AJAX submission succeeded.'));
- // Submit the form with the non-AJAX "Save" button, leaving the title field
+ // Submit the form with the non-Ajax "Save" button, leaving the title field
// blank to trigger a validation error, and ensure that a validation error
// occurred, because this test is for testing what happens when a form is
// re-rendered without being re-built, which is what happens when there's