From 688368e5ff84aab0a586e1038912d9d4183a3691 Mon Sep 17 00:00:00 2001 From: webchick Date: Fri, 12 Oct 2012 20:11:53 -0700 Subject: [PATCH] Issue #1811632 by tim.plunkett, xjm: Remove dependency on the standard profile from DBLogTest. --- core/modules/dblog/lib/Drupal/dblog/Tests/DBLogTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/modules/dblog/lib/Drupal/dblog/Tests/DBLogTest.php b/core/modules/dblog/lib/Drupal/dblog/Tests/DBLogTest.php index 2e6bb50dda1..8107cc89934 100644 --- a/core/modules/dblog/lib/Drupal/dblog/Tests/DBLogTest.php +++ b/core/modules/dblog/lib/Drupal/dblog/Tests/DBLogTest.php @@ -20,9 +20,7 @@ class DBLogTest extends WebTestBase { * * @var array */ - public static $modules = array('dblog', 'poll'); - - protected $profile = 'standard'; + public static $modules = array('dblog', 'node', 'poll', 'help'); protected $big_user; protected $any_user; @@ -189,6 +187,8 @@ class DBLogTest extends WebTestBase { private function verifyEvents() { // Invoke events. $this->doUser(); + $this->drupalCreateContentType(array('type' => 'article', 'name' => t('Article'))); + $this->drupalCreateContentType(array('type' => 'page', 'name' => t('Basic page'))); $this->doNode('article'); $this->doNode('page'); $this->doNode('poll');