Skip to content

Commit

Permalink
Merge pull request #91 from localheinz/fix/namespace
Browse files Browse the repository at this point in the history
Fix: Namespace
  • Loading branch information
localheinz authored Dec 27, 2019
2 parents e4114fd + e6a0fdf commit 53ce192
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
"JanGregor\\Prophecy\\Test\\": "tests/"
}
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion tests/Model/BaseModel.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Tests\Model;
namespace JanGregor\Prophecy\Test\Model;

class BaseModel
{
Expand Down
6 changes: 3 additions & 3 deletions tests/Test/BaseModelTest.php
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<?php

namespace Tests\Test;
namespace JanGregor\Prophecy\Test\Test;

use JanGregor\Prophecy\Test\Model\BaseModel;
use PHPUnit\Framework\TestCase;
use Prophecy\Argument;
use Prophecy\Prophecy\ObjectProphecy;
use Tests\Model\BaseModel;

/**
* @internal
*
* @covers \Tests\Model\BaseModel
* @covers \JanGregor\Prophecy\Test\Model\BaseModel
*/
final class BaseModelTest extends TestCase
{
Expand Down

0 comments on commit 53ce192

Please sign in to comment.