From 8a8aeb6452e573b71a6fc04dcc7ad45e138ab43c Mon Sep 17 00:00:00 2001 From: kkmuffme <11071985+kkmuffme@users.noreply.github.com> Date: Mon, 12 Jun 2023 19:43:30 +0200 Subject: [PATCH] fix tests --- tests/ReturnTypeProvider/SprintfTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/ReturnTypeProvider/SprintfTest.php b/tests/ReturnTypeProvider/SprintfTest.php index 445f31890f0..60e112f3eca 100644 --- a/tests/ReturnTypeProvider/SprintfTest.php +++ b/tests/ReturnTypeProvider/SprintfTest.php @@ -137,7 +137,7 @@ public function providerValidCodeParse(): iterable $val = sprintf("", "abc"); ', 'assertions' => [ - '$val===' => 'string', + '$val===' => '\'\'', ], 'ignored_issues' => [ 'InvalidArgument', @@ -149,7 +149,7 @@ public function providerValidCodeParse(): iterable $val = sprintf("%0.0s", "abc"); ', 'assertions' => [ - '$val===' => 'string', + '$val===' => '\'\'', ], 'ignored_issues' => [ 'InvalidArgument',