From 48bfd2a35c514258a5127282fec8d957dcdb8b67 Mon Sep 17 00:00:00 2001
From: Matthieu Napoli <matthieu@mnapoli.fr>
Date: Thu, 15 Jan 2015 11:52:26 +1300
Subject: [PATCH] Moved test into namespace

---
 tests/PHPUnit/Integration/{ => Log}/LogTest.php | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename tests/PHPUnit/Integration/{ => Log}/LogTest.php (97%)

diff --git a/tests/PHPUnit/Integration/LogTest.php b/tests/PHPUnit/Integration/Log/LogTest.php
similarity index 97%
rename from tests/PHPUnit/Integration/LogTest.php
rename to tests/PHPUnit/Integration/Log/LogTest.php
index 720e03b161..a3dbee3178 100644
--- a/tests/PHPUnit/Integration/LogTest.php
+++ b/tests/PHPUnit/Integration/Log/LogTest.php
@@ -6,7 +6,7 @@
  * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
  */
 
-namespace Piwik\Tests\Integration;
+namespace Piwik\Tests\Integration\Log;
 
 use Exception;
 use Piwik\Common;
@@ -30,10 +30,10 @@ class LogTest extends IntegrationTestCase
     const STRING_MESSAGE_FORMAT = '[%tag%] %message%';
     const STRING_MESSAGE_FORMAT_SPRINTF = "[%s] %s";
 
-    public static $expectedExceptionOutput = '[Piwik\Tests\Integration\LogTest] LogTest.php(122): dummy error message
+    public static $expectedExceptionOutput = '[Piwik\Tests\Integration\Log\LogTest] LogTest.php(122): dummy error message
   dummy backtrace';
 
-    public static $expectedErrorOutput = '[Piwik\Tests\Integration\LogTest] dummyerrorfile.php(145): Unknown error (102) - dummy error string
+    public static $expectedErrorOutput = '[Piwik\Tests\Integration\Log\LogTest] dummyerrorfile.php(145): Unknown error (102) - dummy error string
   dummy backtrace';
 
     public function setUp()
-- 
GitLab