Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / drush / drush / tests / resources / queue_script.php
diff --git a/vendor/drush/drush/tests/resources/queue_script.php b/vendor/drush/drush/tests/resources/queue_script.php
deleted file mode 100644 (file)
index 276b5c2..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-<?php
-
-use Drupal\aggregator\Entity\Feed;
-
-// Create a new feed.
-$feed = Feed::create([
-  'title' => 'test',
-  'url' => 'http://drupal.org/project/issues/rss/drupal?categories=All',
-  'uid' => 2,
-  'refresh' => 3600,
-]);
-$feed->save();
-
-// Let cron call QueueInterface::createItem() for us.
-aggregator_cron();