Skip to content
Snippets Groups Projects
Commit ba6166b3 authored by Joseph Olstad's avatar Joseph Olstad
Browse files

Issue #3455186 by cmlara, joseph.olstad - Replace withConsecutive and...

Issue #3455186 by cmlara, joseph.olstad - Replace withConsecutive and willReturnOnConsecutiveCalls - adjustments encore.
parent 2940d2f6
No related branches found
No related tags found
No related merge requests found
Pipeline #322521 failed
......@@ -47,10 +47,10 @@ class CshsGroupByRootFormatterUnitTest extends UnitTestCase {
->getMock();
foreach (\array_keys($settings) as $i => $key) {
$mock->expects(static::exactly(1))
$mock->expects(static::any())
->method('getSetting')
->with('depth')
->willReturn($settings['depth']);
->with($key)
->willReturn($settings[$key]);
}
$terms = \array_map(function (array $lineage): array {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment