Skip to content
Snippets Groups Projects
Commit e093261c authored by Alex Barth's avatar Alex Barth
Browse files

Specify profile in FeedsWebTestCase.

parent cdcef128
No related branches found
No related tags found
No related merge requests found
...@@ -11,6 +11,14 @@ ...@@ -11,6 +11,14 @@
*/ */
class FeedsWebTestCase extends DrupalWebTestCase { class FeedsWebTestCase extends DrupalWebTestCase {
public function __construct($test_id = NULL) {
parent::__construct($test_id);
// Force the feeds test profile. This unfortunately an either-or decision:
// either Feeds tests run in feeds_test profile or they run in another
// profile. Both is not possible. See http://drupal.org/node/911354
$this->profile = 'feeds_test';
}
/** /**
* Debug utility. Shows current screen. * Debug utility. Shows current screen.
*/ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment