Skip to content

Commit

Permalink
fix failing test caused by psalm-suppress as this should be invalidCo…
Browse files Browse the repository at this point in the history
…deParse test
  • Loading branch information
kkmuffme committed Nov 13, 2023
1 parent dcd53ca commit 6a0a9d1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/IntRangeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -273,22 +273,22 @@ function getInt(): int{return 0;}
'$h===' => 'int<-4, 4>',
'$i===' => 'int<min, 0>',
'$j===' => 'int<min, 0>',
'$k===' => 'never',
'$k===' => 'mixed',
'$l===' => 'int',
'$m===' => 'int<0, max>',
'$n===' => 'int<min, 0>',
'$o===' => 'never',
'$o===' => 'mixed',
'$p===' => 'int',
'$q===' => 'never',
'$q===' => 'mixed',
'$r===' => 'int<0, 2>',
'$s===' => 'int<-2, 0>',
'$t===' => 'never',
'$t===' => 'mixed',
'$u===' => 'int<-2, 0>',
'$v===' => 'int<2, 0>',
'$w===' => 'never',
'$w===' => 'mixed',
'$x===' => 'int<0, 2>',
'$y===' => 'int<-2, 0>',
'$z===' => 'never',
'$z===' => 'mixed',
'$aa===' => 'int<-2, 2>',
'$ab===' => 'int<-2, 2>',
],
Expand Down

0 comments on commit 6a0a9d1

Please sign in to comment.