diff --git a/apachesolr_access/tests/apachesolr_access.test b/apachesolr_access/tests/apachesolr_access.test
index cfe7641..332caf8 100644
--- a/apachesolr_access/tests/apachesolr_access.test
+++ b/apachesolr_access/tests/apachesolr_access.test
@@ -1,7 +1,7 @@
 <?php
 
 class DrupalApacheSolrNodeAccess extends DrupalWebTestCase {
-  function getInfo() {
+  public static function getInfo() {
     return array(
       'name' => 'Node Access',
       'description' => 'Test Access Control',
@@ -73,7 +73,7 @@ class DrupalApacheSolrNodeAccess extends DrupalWebTestCase {
     apachesolr_access_apachesolr_update_index($document, $author_restricted_node, 'apachesolr_search');
     $field = 'access_node_' . apachesolr_site_hash() . '_nodeaccess_author';
     $this->assertEqual($document->{$field}[0], $basic_user->uid, 'Solr Document being indexed is restricted by the proper author');
- 
+
     // Test addition of filters to query.
     $subquery = apachesolr_access_build_subquery($basic_user);
 
@@ -122,4 +122,3 @@ class DrupalApacheSolrNodeAccess extends DrupalWebTestCase {
     }
   }
 }
-
diff --git a/tests/solr_base_subquery.test b/tests/solr_base_subquery.test
index 81de9a3..d45365a 100644
--- a/tests/solr_base_subquery.test
+++ b/tests/solr_base_subquery.test
@@ -1,10 +1,12 @@
 <?php
 
 class DrupalSolrSubQueryTests extends DrupalWebTestCase {
-  function getInfo() {
-    return array('name' => 'Subquery handling',
+  public static function getInfo() {
+    return array(
+      'name' => 'Subquery handling',
       'description' => 'Tests for subqueries.',
-      'group' => 'ApacheSolr');
+      'group' => 'ApacheSolr',
+    );
   }
 
   function setUp() {
diff --git a/tests/solr_index_and_search.test b/tests/solr_index_and_search.test
index 063d4c8..aee1223 100755
--- a/tests/solr_index_and_search.test
+++ b/tests/solr_index_and_search.test
@@ -76,13 +76,10 @@ class DrupalSolrWebTestCase extends DrupalWebTestCase {
 }
 
 class DrupalSolrMatchTestCase extends DrupalSolrWebTestCase {
-  /**
-   * Implements getInfo().
-   */
-  function getInfo() {
+  public static function getInfo() {
     return array(
-      'name' => t('Solr Index Queries'),
-      'description' => t('Indexes content and queries it.'),
+      'name' => 'Solr Index Queries',
+      'description' => 'Indexes content and queries it.',
       'group' => 'ApacheSolr',
     );
   }
@@ -254,4 +251,4 @@ class DrupalSolrMatchTestCase extends DrupalSolrWebTestCase {
     $this->assertEqual(!count($scores) || (min($scores) > 0.0 && max($scores) <= 1.0001), TRUE, "Query scoring '$query'");
   }
 
-}
\ No newline at end of file
+}
