[TESTS] Fix tests

This commit is contained in:
2022-10-19 22:39:17 +01:00
parent 2fd46ca886
commit 053bc38792
12 changed files with 89 additions and 50 deletions

View File

@@ -32,9 +32,10 @@ use Symfony\Component\DependencyInjection\ParameterBag\ContainerBagInterface;
class CacheTest extends GNUsocialTestCase
{
// Needs to return something to conform to the interface
private function notCalled(mixed $i): array
public function notCalled(mixed $i): array
{
static::assertFalse('should not be called');
static::markTestIncomplete('This should not be called.');
return [];
}