1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-21 21:31:13 +01:00

Remove subpar test

This commit is contained in:
Matt Brown 2020-10-28 13:55:51 -04:00
parent dab1aac9d4
commit fce5c26600

View File

@ -586,18 +586,6 @@ class FunctionTemplateTest extends TestCase
[rand(0, 1) ? 5 : false]
);',
],
'ignoreTooManyArrayArgs' => [
'<?php
function takesArray(array $arr) : void {}
/**
* @psalm-suppress TooManyTemplateParams
* @var array<int, int, int>
*/
$b = [1, 2, 3];
takesArray($b);',
],
'functionTemplateUnionType' => [
'<?php
/**