diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-09-10 04:13:01 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-09-10 04:13:01 +0000 |
commit | ab07b4cd5efc35112163b7d74630993920bd92d5 (patch) | |
tree | 69f05e8236300e02dc11db66fe2fd651b5c4942d /modules/simpletest/simpletest.install | |
parent | 5ba4c53379c48d563dee88cb8237eb5fc3eb72b8 (diff) | |
download | brdo-ab07b4cd5efc35112163b7d74630993920bd92d5.tar.gz brdo-ab07b4cd5efc35112163b7d74630993920bd92d5.tar.bz2 |
#305077 by DamZ, boombatower, and cwgordon7: Rework SimpleTest backend.
Diffstat (limited to 'modules/simpletest/simpletest.install')
-rw-r--r-- | modules/simpletest/simpletest.install | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/simpletest/simpletest.install b/modules/simpletest/simpletest.install index 443f0e375..895e92c1d 100644 --- a/modules/simpletest/simpletest.install +++ b/modules/simpletest/simpletest.install @@ -177,25 +177,25 @@ function simpletest_schema() { 'default' => '', 'description' => t('The message group this message belongs to. For example: warning, browser, user.'), ), - 'caller' => array( + 'function' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', - 'description' => t('Name of the caller function or method that created this message.'), + 'description' => t('Name of the assertion function or method that created this message.'), ), 'line' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('Line number of the caller.'), + 'description' => t('Line number on which the function is called.'), ), 'file' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', - 'description' => t('Name of the file where the caller is.'), + 'description' => t('Name of the file where the function is called.'), ), ), 'primary key' => array('message_id'), |