From 21528d07156c1158b56a194b54b3d72c1675356b Mon Sep 17 00:00:00 2001 From: orklah Date: Mon, 13 Dec 2021 23:25:22 +0100 Subject: [PATCH] fix test --- tests/AssertAnnotationTest.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/AssertAnnotationTest.php b/tests/AssertAnnotationTest.php index 4b5923f3385..f57925f6998 100644 --- a/tests/AssertAnnotationTest.php +++ b/tests/AssertAnnotationTest.php @@ -1675,9 +1675,10 @@ function test(): void /** * @template T * @param T $expected + * @param mixed $actual * @psalm-assert =T $actual */ - public function assertSame(mixed $expected, mixed $actual): void + public function assertSame($expected, $actual): void { return; }