File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ All notable changes of the PHPUnit 12.2 release series are documented in this fi
77### Fixed
88
99* [ #6222 ] ( https://github.com/sebastianbergmann/phpunit/issues/6222 ) : Data Provider seems to mess up Test Dependencies
10+ * ` shortenArraysForExportThreshold ` XML configuration setting has no effect on all arrays exported for event-related value objects
1011
1112## [ 12.2.1] - 2025-06-07
1213
Original file line number Diff line number Diff line change @@ -63,14 +63,14 @@ private static function dataFor(TestCase $testCase): TestDataCollection
6363
6464 $ testData [] = DataFromDataProvider::from (
6565 $ dataSetName ,
66- Exporter::export ($ testCase ->providedData ()),
66+ Exporter::shortenedRecursiveExport ($ testCase ->providedData ()),
6767 $ testCase ->dataSetAsStringWithData (),
6868 );
6969 }
7070
7171 if ($ testCase ->hasDependencyInput ()) {
7272 $ testData [] = DataFromTestDependency::from (
73- Exporter::export ($ testCase ->dependencyInput ()),
73+ Exporter::shortenedRecursiveExport ($ testCase ->dependencyInput ()),
7474 );
7575 }
7676
You can’t perform that action at this time.
0 commit comments