Skip to content

Commit

Permalink
Do not generate superfluous attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed May 3, 2021
1 parent 4edb648 commit a3ded77
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Util/ConfigurationGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ final class ConfigurationGenerator
verbose="true">
<testsuites>
<testsuite name="default">
<directory suffix="Test.php">{tests_directory}</directory>
<directory>{tests_directory}</directory>
</testsuite>
</testsuites>
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/Util/ConfigurationGeneratorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function testGeneratesConfigurationCorrectly(): void
verbose="true">
<testsuites>
<testsuite name="default">
<directory suffix="Test.php">tests</directory>
<directory>tests</directory>
</testsuite>
</testsuites>
Expand Down

0 comments on commit a3ded77

Please sign in to comment.