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

Issue #3455186 by cmlara, joseph.olstad - Use numberOfInvocations() instead of...

Issue #3455186 by cmlara, joseph.olstad - Use numberOfInvocations() instead of getInvocationCount().
parent 86533223
No related branches found
No related tags found
No related merge requests found
Pipeline #322429 failed
......@@ -55,7 +55,7 @@ class CshsGroupByRootFormatterUnitTest extends UnitTestCase {
$this->assertSame(\array_map(
static fn (string $name): array => [$name],
\array_keys($settings),
)[$matcher->getInvocationCount() - 1], $parameters);
)[$matcher->numberOfInvocations() - 1], $parameters);
}
);
......@@ -116,7 +116,7 @@ class CshsGroupByRootFormatterUnitTest extends UnitTestCase {
$this->assertSame(\array_map(
static fn (TermInterface $term): array => [$term->id()],
$terms_to_view,
)[$matcher->getInvocationCount() - 1], $parameters);
)[$matcher->numberOfInvocations() - 1], $parameters);
}
);
......
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