Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / drush / drush / tests / UnishProcessFailedError.php
diff --git a/vendor/drush/drush/tests/UnishProcessFailedError.php b/vendor/drush/drush/tests/UnishProcessFailedError.php
deleted file mode 100644 (file)
index b13200d..0000000
+++ /dev/null
@@ -1,20 +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);
-    }
-}