This commit is contained in:
nuno maduro
2026-05-02 19:07:41 +01:00
parent 9e4cf4b665
commit 65c0fbc528
2 changed files with 15 additions and 15 deletions

View File

@ -9,9 +9,9 @@ use PHPUnit\Framework\TestStatus\TestStatus;
/**
* @internal
*/
enum Replay
enum ReplayType
{
case No;
case None;
case Pass;
case Risky;
case Skipped;
@ -21,7 +21,7 @@ enum Replay
public static function fromStatus(?TestStatus $status): self
{
if (! $status instanceof TestStatus) {
return self::No;
return self::None;
}
return match (true) {