Skip to content

Commit

Permalink
[CLEANUP] Autoformat the PHPUnit configuration files (#1084)
Browse files Browse the repository at this point in the history
This avoids unrelated formatting changes in functional changes.
  • Loading branch information
oliverklee authored Dec 19, 2023
1 parent 16aee3c commit 2c972eb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Tests/Functional/FunctionalTests.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@
</testsuites>
<php>
<!-- @deprecated: will be removed with next major version, constant TYPO3_MODE is deprecated -->
<const name="TYPO3_MODE" value="BE" />
<const name="TYPO3_MODE" value="BE"/>
<!--
@deprecated: Set this to not suppress warnings, notices and deprecations in functional tests
with TYPO3 core v11 and up.
Will always be done with next major version.
To still suppress warnings, notices and deprecations, do NOT define the constant at all.
-->
<const name="TYPO3_TESTING_FUNCTIONAL_REMOVE_ERROR_HANDLER" value="true" />
<ini name="display_errors" value="1" />
<env name="TYPO3_CONTEXT" value="Testing" />
<const name="TYPO3_TESTING_FUNCTIONAL_REMOVE_ERROR_HANDLER" value="true"/>
<ini name="display_errors" value="1"/>
<env name="TYPO3_CONTEXT" value="Testing"/>
</php>
</phpunit>
6 changes: 3 additions & 3 deletions Tests/Unit/UnitTests.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
</coverage>
<php>
<!-- @deprecated: will be removed with next major version, constant TYPO3_MODE is deprecated -->
<const name="TYPO3_MODE" value="BE" />
<ini name="display_errors" value="1" />
<env name="TYPO3_CONTEXT" value="Testing" />
<const name="TYPO3_MODE" value="BE"/>
<ini name="display_errors" value="1"/>
<env name="TYPO3_CONTEXT" value="Testing"/>
</php>
</phpunit>

0 comments on commit 2c972eb

Please sign in to comment.