From 72216f9354012eb0fe9315ee6cf53dc2cdf1bfc6 Mon Sep 17 00:00:00 2001 From: orklah Date: Wed, 5 Jan 2022 22:36: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 6c6d6334aa1..09fed59b365 100644 --- a/tests/AssertAnnotationTest.php +++ b/tests/AssertAnnotationTest.php @@ -1938,9 +1938,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; }