diff --git a/tests/content.crud.test b/tests/content.crud.test
index b7a3624..874ee99 100644
--- a/tests/content.crud.test
+++ b/tests/content.crud.test
@@ -375,7 +375,7 @@ class ContentCrudTestCase extends DrupalWebTestCase {
 }
 
 class ContentCrudBasicTest extends ContentCrudTestCase {
-  function getInfo() {
+  public static function getInfo() {
     return array(
       'name' => t('CRUD - Basic API tests'),
       'description' => t('Tests the field CRUD (create, read, update, delete) API. <strong>Requires <a href="@schema_link">Schema module</a>.</strong>', array('@schema_link' => 'http://www.drupal.org/project/schema')),
@@ -431,7 +431,7 @@ class ContentCrudBasicTest extends ContentCrudTestCase {
 }
 
 class ContentCrudSingleToMultipleTest extends ContentCrudTestCase {
-  function getInfo() {
+  public static function getInfo() {
     return array(
       'name' => t('CRUD - Single to multiple'),
       'description' => t('Tests the field CRUD (create, read, update, delete) API by creating a single value field and changing it to a multivalue field, sharing it between several content types. <strong>Requires <a href="@schema_link">Schema module</a>.</strong>', array('@schema_link' => 'http://www.drupal.org/project/schema')),
@@ -506,7 +506,7 @@ class ContentCrudSingleToMultipleTest extends ContentCrudTestCase {
 }
 
 class ContentCrudMultipleToSingleTest extends ContentCrudTestCase {
-  function getInfo() {
+  public static function getInfo() {
     return array(
       'name' => t('CRUD - Multiple to single'),
       'description' => t('Tests the field CRUD (create, read, update, delete) API by creating a multivalue field and changing it to a single value field, sharing it between several content types. <strong>Requires <a href="@schema_link">Schema module</a>.</strong>', array('@schema_link' => 'http://www.drupal.org/project/schema')),
@@ -640,7 +640,7 @@ class ContentCrudMultipleToSingleTest extends ContentCrudTestCase {
 }
 
 class ContentUICrud extends ContentCrudTestCase {
-  function getInfo() {
+  public static function getInfo() {
     return array(
       'name' => t('Admin UI'),
       'description' => t('Tests the CRUD (create, read, update, delete) operations for content fields via the UI. <strong>Requires <a href="@schema_link">Schema module</a>.</strong>', array('@schema_link' => 'http://www.drupal.org/project/schema')),
@@ -885,7 +885,7 @@ class ContentUICrud extends ContentCrudTestCase {
 }
 
 class ContentOptionWidgetTest extends ContentCrudTestCase {
-  function getInfo() {
+  public static function getInfo() {
     return array(
       'name' => t('Option widgets'),
       'description' => t('Tests the optionwidgets.'),
