Skip to content

Commit

Permalink
Rename namespace for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mikehaertl committed Jan 7, 2020
1 parent fb2e18a commit 0e97c2e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
},
"autoload": {
"psr-4": {
"mikehaertl\\wkhtmlto\\": "src/"
"mikehaertl\\wkhtmlto\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"mikehaertl\\wkhtmlto\\tests\\": "tests/"
"tests\\": "tests"
}
},
"require-dev": {
Expand Down
2 changes: 1 addition & 1 deletion tests/ImageTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
namespace mikehaertl\wkhtmlto\tests;
namespace tests;

use PHPUnit\Framework\TestCase;
use mikehaertl\wkhtmlto\Image;
Expand Down
2 changes: 1 addition & 1 deletion tests/PdfTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
namespace mikehaertl\wkhtmlto\tests;
namespace tests;

use PHPUnit\Framework\TestCase;
use mikehaertl\wkhtmlto\Pdf;
Expand Down

0 comments on commit 0e97c2e

Please sign in to comment.