From 3c464e8c7d16ba7a244422650ba38927f6abfc3f Mon Sep 17 00:00:00 2001
From: Tim Plunkett <git@plnktt.com>
Date: Tue, 15 May 2012 22:59:00 -0400
Subject: [PATCH] Use the standard profile for testing where necessary.

---
 tests/comment/views_handler_argument_comment_user_uid.test | 2 ++
 tests/field/views_fieldapi.test                            | 2 ++
 tests/views_groupby.test                                   | 2 ++
 tests/views_ui.test                                        | 2 ++
 4 files changed, 8 insertions(+)

diff --git a/tests/comment/views_handler_argument_comment_user_uid.test b/tests/comment/views_handler_argument_comment_user_uid.test
index afcb333ab25f..b228b752782b 100644
--- a/tests/comment/views_handler_argument_comment_user_uid.test
+++ b/tests/comment/views_handler_argument_comment_user_uid.test
@@ -9,6 +9,8 @@
  * Tests the argument_comment_user_uid handler.
  */
 class viewsHandlerArgumentCommentUserUidTest extends ViewsSqlTest {
+  protected $profile = 'standard';
+
   public static function getInfo() {
     return array(
       'name' => 'Tests handler argument_comment_user_uid',
diff --git a/tests/field/views_fieldapi.test b/tests/field/views_fieldapi.test
index 57fe11571529..8b217b42f103 100644
--- a/tests/field/views_fieldapi.test
+++ b/tests/field/views_fieldapi.test
@@ -20,6 +20,8 @@
  * Provides some helper methods for testing fieldapi integration into views.
  */
 class ViewsFieldApiTestHelper extends ViewsSqlTest {
+  protected $profile = 'standard';
+
   /**
    * Stores the field definitions used by the test.
    * @var array
diff --git a/tests/views_groupby.test b/tests/views_groupby.test
index 7f475d5cb36d..c59fb6b962ef 100644
--- a/tests/views_groupby.test
+++ b/tests/views_groupby.test
@@ -290,6 +290,8 @@ class ViewsQueryGroupByTest extends ViewsSqlTest {
  * Tests UI of aggregate functionality..
  */
 class viewsUiGroupbyTestCase extends WebTestBase {
+  protected $profile = 'standard';
+
   function setUp() {
     // Enable views_ui.
     parent::setUp('views_ui', 'views_test');
diff --git a/tests/views_ui.test b/tests/views_ui.test
index d6f433d37eee..c9a1c7f2be6a 100644
--- a/tests/views_ui.test
+++ b/tests/views_ui.test
@@ -11,6 +11,8 @@ use Drupal\simpletest\WebTestBase;
  * Views UI wizard tests.
  */
 class ViewsUIWizardHelper extends WebTestBase {
+  protected $profile = 'standard';
+
   function setUp() {
     // Enable views_ui.
     parent::setUp('views_ui');
-- 
GitLab