Omit default values for suffix in phpunit.xml (#6210)
The values specified for `suffix` are their respective defaults and can be omitted.
This commit is contained in:
parent
3ac233abb2
commit
6c1a39b5b3
|
@ -6,15 +6,15 @@
|
|||
>
|
||||
<testsuites>
|
||||
<testsuite name="Unit">
|
||||
<directory suffix="Test.php">./tests/Unit</directory>
|
||||
<directory>./tests/Unit</directory>
|
||||
</testsuite>
|
||||
<testsuite name="Feature">
|
||||
<directory suffix="Test.php">./tests/Feature</directory>
|
||||
<directory>./tests/Feature</directory>
|
||||
</testsuite>
|
||||
</testsuites>
|
||||
<source>
|
||||
<include>
|
||||
<directory suffix=".php">./app</directory>
|
||||
<directory>./app</directory>
|
||||
</include>
|
||||
</source>
|
||||
<php>
|
||||
|
|
Loading…
Reference in New Issue