Skip to content
Snippets Groups Projects
Commit 36bcedc4 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #342493 by mayor: make aggregator.test work on PostgreSQL.

parent eab8a13b
No related branches found
No related tags found
No related merge requests found
......@@ -477,9 +477,8 @@ class ImportOPMLTestCase extends AggregatorTestCase {
db_delete('aggregator_category')->execute();
$category = $this->randomName(10, self::$prefix);
db_insert('aggregator_category')
$cid = db_insert('aggregator_category')
->fields(array(
'cid' => 1,
'title' => $category,
'description' => '',
))
......@@ -490,7 +489,7 @@ class ImportOPMLTestCase extends AggregatorTestCase {
$this->assertFieldByName('files[upload]', '', t('Looking for file upload field.'));
$this->assertFieldByName('remote', '', t('Looking for remote URL field.'));
$this->assertFieldByName('refresh', '', t('Looking for refresh field.'));
$this->assertFieldByName('category[1]', '1', t('Looking for category field.'));
$this->assertFieldByName("category[$cid]", $cid, t('Looking for category field.'));
}
/**
......
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