Skip to content

Commit e2692bc

Browse files
committed
fix
1 parent 5f66319 commit e2692bc

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/VichUploaderBundleTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ final class VichUploaderBundleTest extends TestCase
2020
{
2121
protected function setUp(): void
2222
{
23-
if (PHP_VERSION_ID <= 80200) { // @phpstan-ignore-line
23+
if (\PHP_VERSION_ID <= 80200) {
2424
self::markTestSkipped('PHP 8.1 is not supported in these tests');
2525
}
26-
if (SimpleAppKernel::VERSION_ID >= 70200) { // @phpstan-ignore-line
27-
self::markTestSkipped('Kernels above 7.1.0 are not supported in these tests');
26+
if (SimpleAppKernel::VERSION_ID >= 60400) { // @phpstan-ignore-line
27+
self::markTestSkipped('Kernels above 6.4.0 are not supported in these tests');
2828
}
2929
}
3030

0 commit comments

Comments
 (0)