Skip to content
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.

Commit

Permalink
Reorganize
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed May 21, 2020
1 parent 3141323 commit 9f73aa8
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .php_cs.dist
Expand Up @@ -11,7 +11,7 @@ EOF;
$finder = PhpCsFixer\Finder::create()
->files()
->in(__DIR__ . '/src')
->in(__DIR__ . '/tests/tests');
->in(__DIR__ . '/tests/unit');

return PhpCsFixer\Config::create()
->setFinder($finder)
Expand Down
4 changes: 2 additions & 2 deletions phpunit.xml
Expand Up @@ -9,8 +9,8 @@
beStrictAboutTodoAnnotatedTests="true"
verbose="true">
<testsuites>
<testsuite name="default">
<directory suffix="Test.php">tests/tests</directory>
<testsuite name="unit">
<directory>tests/unit</directory>
</testsuite>
</testsuites>

Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 9f73aa8

Please sign in to comment.