Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / drush / drush / tests / Unish / UnishProcessFailedError.php
diff --git a/vendor/drush/drush/tests/Unish/UnishProcessFailedError.php b/vendor/drush/drush/tests/Unish/UnishProcessFailedError.php
deleted file mode 100644 (file)
index 765b428..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-<?php
-
-namespace Unish;
-
-use Symfony\Component\Process\Process;
-
-class UnishProcessFailedError extends \PHPUnit_Framework_AssertionFailedError {
-  public function __construct($message, Process $process) {
-    if ($output = $process->getOutput()) {
-      $message .= "\n\nCommand output:\n" . $output;
-    }
-    if ($stderr = $process->getErrorOutput()) {
-      $message .= "\n\nCommand stderr:\n" . $stderr;
-    }
-
-    parent::__construct($message);
-  }
-}