From 5cbc1ed5da611f4c7d4f83533cd3663f9f3a62d7 Mon Sep 17 00:00:00 2001
From: Eddie Lau <kahlau@ebay.com>
Date: Thu, 23 Apr 2015 10:20:11 -0500
Subject: [PATCH] MAGETWO-36073: Move
 dev/tools/Magento/Tools/Di/singletenant_compiler.php

- changed message in test
---
 .../Setup/Test/Unit/Console/Command/DiCompileCommandTest.php | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/setup/src/Magento/Setup/Test/Unit/Console/Command/DiCompileCommandTest.php b/setup/src/Magento/Setup/Test/Unit/Console/Command/DiCompileCommandTest.php
index e2127697d81..068093ba888 100644
--- a/setup/src/Magento/Setup/Test/Unit/Console/Command/DiCompileCommandTest.php
+++ b/setup/src/Magento/Setup/Test/Unit/Console/Command/DiCompileCommandTest.php
@@ -70,6 +70,9 @@ class DiCompileCommandTest extends \PHPUnit_Framework_TestCase
         $this->manager->expects($this->once())->method('process');
         $tester = new CommandTester($this->command);
         $tester->execute([]);
-        $this->assertEquals('Generated code and DI configuration successfully.' . PHP_EOL, $tester->getDisplay());
+        $this->assertEquals(
+            'Generated code and dependency injection configuration successfully.' . PHP_EOL,
+            $tester->getDisplay()
+        );
     }
 }
-- 
GitLab