From f697d6b5b6ac9441b63ec1ac4a856fc0725d92c3 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Mon, 21 Mar 2016 21:23:37 +0100 Subject: [PATCH] fix namespace of abstract unit test base class --- CHANGELOG.md | 5 +++++ .../Test}/Unit/Repository/MappedStatementRepositoryTest.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) rename {tests => src/Test}/Unit/Repository/MappedStatementRepositoryTest.php (98%) diff --git a/CHANGELOG.md b/CHANGELOG.md index b90a171..433315b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ CHANGELOG ========= +0.2.1 +----- + +* fixed namespace for base unit test case class `MappedStatementRepositoryTest` + 0.2.0 ----- diff --git a/tests/Unit/Repository/MappedStatementRepositoryTest.php b/src/Test/Unit/Repository/MappedStatementRepositoryTest.php similarity index 98% rename from tests/Unit/Repository/MappedStatementRepositoryTest.php rename to src/Test/Unit/Repository/MappedStatementRepositoryTest.php index 1f8c632..f667e7f 100644 --- a/tests/Unit/Repository/MappedStatementRepositoryTest.php +++ b/src/Test/Unit/Repository/MappedStatementRepositoryTest.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace XApi\Repository\Doctrine\Tests\Unit\Repository; +namespace XApi\Repository\Doctrine\Test\Unit\Repository; use Xabbuh\XApi\DataFixtures\StatementFixtures; use XApi\Repository\Api\Mapping\MappedStatement;