diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorTestBase.php b/core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorTestBase.php index 71e36fc..ca56e20 100644 --- a/core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorTestBase.php +++ b/core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorTestBase.php @@ -68,7 +68,7 @@ function createFeed($feed_url = NULL, array $edit = array()) { * Feed object representing the feed. */ function deleteFeed(Feed $feed) { - $this->drupalPost('admin/config/services/aggregator/edit/feed/' . $feed->id(), array(), t('Delete')); + $this->drupalPost('admin/config/services/aggregator/delete/feed/' . $feed->id(), array(), t('Delete')); $this->assertRaw(t('The feed %title has been deleted.', array('%title' => $feed->label())), 'Feed deleted successfully.'); }