summaryrefslogtreecommitdiff
path: root/modules/aggregator/aggregator.test
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2008-11-07 07:11:22 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2008-11-07 07:11:22 +0000
commita8576b12f34cfb09d0a94d920d0effb35fab3c03 (patch)
treeeae9f30c41cf67c4dbfce5a96ce0f2e92236fe2c /modules/aggregator/aggregator.test
parent8a0ee80de6dc48c449f7f7deae2420d72702bdcf (diff)
downloadbrdo-a8576b12f34cfb09d0a94d920d0effb35fab3c03.tar.gz
brdo-a8576b12f34cfb09d0a94d920d0effb35fab3c03.tar.bz2
#321828 by Damien Tournoud: November Make-All-Tests-Pass-Again-Extravaganza: Correct registration of maintenance page in hook_theme().
Diffstat (limited to 'modules/aggregator/aggregator.test')
-rw-r--r--modules/aggregator/aggregator.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/aggregator/aggregator.test b/modules/aggregator/aggregator.test
index 11fc75dcd..fa39ecf52 100644
--- a/modules/aggregator/aggregator.test
+++ b/modules/aggregator/aggregator.test
@@ -585,7 +585,7 @@ class ImportOPMLTestCase extends AggregatorTestCase {
$this->assertRaw(t('A feed named %title already exists.', array('%title' => $feeds[1]['title'])), t('Verifying that a duplicate title was identified'));
$after = db_query('SELECT COUNT(*) FROM {aggregator_feed}')->fetchField();
- $this->assertEqual($after, 2, t('Verifying that two distinct feeds were added.'));
+ $this->assertEqual($after, 3, t('Verifying that three distinct feeds were added.'));
$feeds_from_db = db_query("SELECT f.title, f.url, f.refresh, cf.cid FROM {aggregator_feed} f LEFT JOIN {aggregator_category_feed} cf ON f.fid = cf.fid");
$refresh = $category = TRUE;