Skip to content

Commit b4a9884

Browse files
Merge branch '11.5' into 12.2
2 parents c87c937 + 7ff0969 commit b4a9884

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

ChangeLog-12.2.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

src/Event/Value/Test/TestMethodBuilder.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)