Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kkmuffme committed Jun 12, 2023
1 parent 96988ea commit 8a8aeb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/ReturnTypeProvider/SprintfTest.php
Expand Up @@ -137,7 +137,7 @@ public function providerValidCodeParse(): iterable
$val = sprintf("", "abc");
',
'assertions' => [
'$val===' => 'string',
'$val===' => '\'\'',
],
'ignored_issues' => [
'InvalidArgument',
Expand All @@ -149,7 +149,7 @@ public function providerValidCodeParse(): iterable
$val = sprintf("%0.0s", "abc");
',
'assertions' => [
'$val===' => 'string',
'$val===' => '\'\'',
],
'ignored_issues' => [
'InvalidArgument',
Expand Down

0 comments on commit 8a8aeb6

Please sign in to comment.