@@ -73,16 +73,14 @@ class FeedsRSStoNodesTest extends FeedsWebTestCase {
// Assert 10 items aggregated after creation of the node.
$this->assertText('Created 10 nodes');
$article_nid=db_query_range("SELECT nid FROM {node} WHERE type = 'article'",0,1)->fetchField();
$this->assertEqual("Created by FeedsNodeProcessor",db_query("SELECT nr.log FROM {node} n JOIN {node_revision} nr ON n.vid = nr.vid WHERE n.nid = :nid",array(':nid'=>$article_nid))->fetchField());
// Navigate to feed node, there should be Feeds tabs visible.
$this->drupalGet('node/'.$nid);
$this->assertRaw('node/'.$nid.'/import');
$this->assertRaw('node/'.$nid.'/delete-items');
// Navigate to a non-feed node, there should be no Feeds tabs visible.
$article_nid=db_query_range("SELECT nid FROM {node} WHERE type = 'article'",0,1)->fetchField();
$this->assertEqual("Created by FeedsNodeProcessor",db_query("SELECT nr.log FROM {node} n JOIN {node_revision} nr ON n.vid = nr.vid WHERE n.nid = :nid",array(':nid'=>$article_nid))->fetchField());