Removed redundant Test namespace

This commit is contained in:
Alexey Kopytko 2016-02-29 16:12:33 +09:00
parent bfd2ef6ae8
commit 1565eb316f
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@
},
"autoload-dev": {
"psr-4": {
":vendor\\:package_name\\Test\\": "tests"
":vendor\\:package_name\\": "tests"
}
},
"scripts": {

View File

@ -1,6 +1,6 @@
<?php
namespace League\Skeleton\Test;
namespace League\Skeleton;
class ExampleTest extends \PHPUnit_Framework_TestCase
{