Skip to content

Commit e3320ba

Browse files
committed
support php74
1 parent 1cf919b commit e3320ba

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/CacheTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public function testCacheExists(): void
8787
public function testCacheIncr(): void
8888
{
8989
if (version_compare(PHP_VERSION, '8.0.0', '<')) {
90-
$this->markTestSkipped('Not Supported PHP 7.4');
90+
$this->markTestSkipped('Not Supported less than PHP 8.0');
9191
}
9292
$key = __METHOD__;
9393
// 在单进程内
@@ -124,7 +124,7 @@ public function testCacheIncr(): void
124124
public function testCacheDecr(): void
125125
{
126126
if (version_compare(PHP_VERSION, '8.0.0', '<')) {
127-
$this->markTestSkipped('Not Supported PHP 7.4');
127+
$this->markTestSkipped('Not Supported less than PHP 8.0');
128128
}
129129
$key = __METHOD__;
130130
// 在单进程内

0 commit comments

Comments
 (0)