From 58cf03eb2a443afb170e687554e657bf3d72090a Mon Sep 17 00:00:00 2001
From: Ivan Gavryshko <igavryshko@ebay.com>
Date: Thu, 23 Apr 2015 16:56:12 -0500
Subject: [PATCH] MAGETWO-36077: Move dev/tools/Magento/Tools/View/deploy.php

- fixed integration test
---
 .../testsuite/Magento/Framework/View/Asset/MinifierTest.php   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Asset/MinifierTest.php b/dev/tests/integration/testsuite/Magento/Framework/View/Asset/MinifierTest.php
index 8bc3fdba32e..2940b428984 100644
--- a/dev/tests/integration/testsuite/Magento/Framework/View/Asset/MinifierTest.php
+++ b/dev/tests/integration/testsuite/Magento/Framework/View/Asset/MinifierTest.php
@@ -208,7 +208,7 @@ class MinifierTest extends \PHPUnit_Framework_TestCase
             ->method('create')
             ->will($this->returnValue($this->objectManager));
 
-        $logger = $this->objectManager->create(
+        $output = $this->objectManager->create(
             'Symfony\Component\Console\Output\Output'
         );
 
@@ -232,7 +232,7 @@ class MinifierTest extends \PHPUnit_Framework_TestCase
         /** @var \Magento\Setup\ModelDeployer $deployer */
         $deployer = $this->objectManager->create(
             'Magento\Setup\Model\Deployer',
-            ['filesUtil' => $filesUtil, 'logger' => $logger, 'isDryRun' => false]
+            ['filesUtil' => $filesUtil, 'output' => $output, 'isDryRun' => false]
         );
 
         $deployer->deploy($omFactory, ['en_US']);
-- 
GitLab