From b3402de9e04d9713c716ac8697a573c48d2f8da6 Mon Sep 17 00:00:00 2001 From: Torben Hansen Date: Sat, 27 Oct 2018 12:49:37 +0200 Subject: [PATCH] [TASK] Do not convert deprecations to exceptions Deprecations in TYPO3 v9 will trigger an error with E_USER_DEPRECATED resulting in unit tests using deprecated core functions to fail. This patch updates the text configuration, so deprecations will not be converted to exceptions --- res/Configuration/FunctionalTests.xml | 1 + res/Configuration/UnitTests.xml | 1 + 2 files changed, 2 insertions(+) diff --git a/res/Configuration/FunctionalTests.xml b/res/Configuration/FunctionalTests.xml index ff9800a..986dfdf 100644 --- a/res/Configuration/FunctionalTests.xml +++ b/res/Configuration/FunctionalTests.xml @@ -5,6 +5,7 @@ colors="true" convertErrorsToExceptions="true" convertWarningsToExceptions="true" + convertDeprecationsToExceptions="false" forceCoversAnnotation="false" processIsolation="true" stopOnError="false" diff --git a/res/Configuration/UnitTests.xml b/res/Configuration/UnitTests.xml index 5ef6fc1..642cd06 100644 --- a/res/Configuration/UnitTests.xml +++ b/res/Configuration/UnitTests.xml @@ -5,6 +5,7 @@ colors="true" convertErrorsToExceptions="true" convertWarningsToExceptions="true" + convertDeprecationsToExceptions="false" forceCoversAnnotation="false" processIsolation="false" stopOnError="false"