INFRA-132 - Civi\AllTests
authorTim Otten <totten@civicrm.org>
Thu, 15 Jan 2015 07:22:14 +0000 (23:22 -0800)
committerTim Otten <totten@civicrm.org>
Thu, 15 Jan 2015 07:22:24 +0000 (23:22 -0800)
1db1c57 changed "new self" to "new CiviTestSuite()". This changes to
"new self()".

tests/phpunit/Civi/AllTests.php

index 56d135d3990fd75f26a534b0a508f79132e010d4..9a69193d4584d29c95477c93c58f0857403bf4a4 100644 (file)
@@ -47,7 +47,7 @@ class Civi_AllTests extends CiviTestSuite {
    */
   private static function getInstance() {
     if (is_null(self::$instance)) {
-      self::$instance = new CiviTestSuite();
+      self::$instance = new self();
     }
     return self::$instance;
   }