diff options
author | Jennifer Hodgdon <yahgrp@poplarware.com> | 2013-07-03 08:00:12 -0700 |
---|---|---|
committer | Jennifer Hodgdon <yahgrp@poplarware.com> | 2013-07-03 08:00:12 -0700 |
commit | 66bc8fb393d4bf2ff0230c80350143bd186a1d51 (patch) | |
tree | 865a99d2b5273a67ea456f2c6af28f1006af406b /modules/simpletest/tests/ajax.test | |
parent | 4095c4e8ff90fa5362a85cf5463866b7f6003a77 (diff) | |
download | brdo-66bc8fb393d4bf2ff0230c80350143bd186a1d51.tar.gz brdo-66bc8fb393d4bf2ff0230c80350143bd186a1d51.tar.bz2 |
Issue #1797120 by dcam, lazysoundsystem, Lars Toomre, xjm: Remove t() from test asserts in various system tests
Diffstat (limited to 'modules/simpletest/tests/ajax.test')
-rw-r--r-- | modules/simpletest/tests/ajax.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/simpletest/tests/ajax.test b/modules/simpletest/tests/ajax.test index 014a35042..664d52042 100644 --- a/modules/simpletest/tests/ajax.test +++ b/modules/simpletest/tests/ajax.test @@ -524,7 +524,7 @@ class AJAXElementValidation extends AJAXTestCase { // Post with 'drivertext' as the triggering element. $post_result = $this->drupalPostAJAX('ajax_validation_test', $edit, 'drivertext'); // Look for a validation failure in the resultant JSON. - $this->assertNoText(t('Error message'), t("No error message in resultant JSON")); - $this->assertText('ajax_forms_test_validation_form_callback invoked', t('The correct callback was invoked')); + $this->assertNoText(t('Error message'), "No error message in resultant JSON"); + $this->assertText('ajax_forms_test_validation_form_callback invoked', 'The correct callback was invoked'); } } |