summaryrefslogtreecommitdiff
path: root/modules/simpletest
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2012-02-29 00:07:48 -0800
committerwebchick <webchick@24967.no-reply.drupal.org>2012-02-29 00:07:48 -0800
commit64c8b12b97a78a774eae6088d8d654ffdcd4d301 (patch)
treea421c811fc744568d1a9f6c63e5182cefc1ad418 /modules/simpletest
parent559c4d739a50a897f0b8dfaf870524694109b6a1 (diff)
downloadbrdo-64c8b12b97a78a774eae6088d8d654ffdcd4d301.tar.gz
brdo-64c8b12b97a78a774eae6088d8d654ffdcd4d301.tar.bz2
Issue #1446366 by xjm: Multiple web test classes mislabeled as unit tests.
Diffstat (limited to 'modules/simpletest')
-rw-r--r--modules/simpletest/tests/error.test2
-rw-r--r--modules/simpletest/tests/theme.test6
2 files changed, 4 insertions, 4 deletions
diff --git a/modules/simpletest/tests/error.test b/modules/simpletest/tests/error.test
index b1ec4b3f5..5b6b04b9e 100644
--- a/modules/simpletest/tests/error.test
+++ b/modules/simpletest/tests/error.test
@@ -3,7 +3,7 @@
/**
* Tests Drupal error and exception handlers.
*/
-class DrupalErrorHandlerUnitTest extends DrupalWebTestCase {
+class DrupalErrorHandlerTestCase extends DrupalWebTestCase {
public static function getInfo() {
return array(
'name' => 'Drupal error handlers',
diff --git a/modules/simpletest/tests/theme.test b/modules/simpletest/tests/theme.test
index 19775a7f8..85f67b460 100644
--- a/modules/simpletest/tests/theme.test
+++ b/modules/simpletest/tests/theme.test
@@ -8,7 +8,7 @@
/**
* Unit tests for the Theme API.
*/
-class ThemeUnitTest extends DrupalWebTestCase {
+class ThemeTestCase extends DrupalWebTestCase {
protected $profile = 'testing';
public static function getInfo() {
@@ -116,7 +116,7 @@ class ThemeUnitTest extends DrupalWebTestCase {
/**
* Unit tests for theme_table().
*/
-class ThemeTableUnitTest extends DrupalWebTestCase {
+class ThemeTableTestCase extends DrupalWebTestCase {
public static function getInfo() {
return array(
'name' => 'Theme Table',
@@ -315,7 +315,7 @@ class ThemeLinksTest extends DrupalWebTestCase {
/**
* Functional test for initialization of the theme system in hook_init().
*/
-class ThemeHookInitUnitTest extends DrupalWebTestCase {
+class ThemeHookInitTestCase extends DrupalWebTestCase {
public static function getInfo() {
return array(
'name' => 'Theme initialization in hook_init()',