From 0bfebf609b2047360cdca102d2c08fb78b393927 Mon Sep 17 00:00:00 2001 From: Ruben Van Assche Date: Tue, 13 Aug 2024 17:00:39 +0200 Subject: [PATCH] Fix test --- tests/Fakes/FakeIntEnum.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/Fakes/FakeIntEnum.php b/tests/Fakes/FakeIntEnum.php index c7b5a10..9f42934 100644 --- a/tests/Fakes/FakeIntEnum.php +++ b/tests/Fakes/FakeIntEnum.php @@ -4,7 +4,7 @@ enum FakeIntEnum: int implements FakeChildInterface { - case A = 'a'; - case B = 'b'; - case C = 'c'; + case A = 0; + case B = 1; + case C = 2; }