diff --git a/tests/comment/views_handler_argument_comment_user_uid.test b/tests/comment/views_handler_argument_comment_user_uid.test
index afcb333ab25f0c76d9f160b49fd30c88c26ef4a8..b228b752782b4ca6cdf386259974e9784641fec9 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 57fe11571529a4cd262d38f09c1db886ab6c93fd..8b217b42f1030ab3c6aa61a0530e5bc086611789 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 7f475d5cb36d5c1b44520fdafee263e81963768d..c59fb6b962ef2a64b56a469b61d97df10bafc2f0 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 d6f433d37eeebea178db671eef7541e7a18fa5b1..c9a1c7f2be6a40ca8238bdb816a93fdd5533238c 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');