From 2946e56867659a92b5f522ac57e1ce823d19770a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9C=D0=B0=D0=BA=D1=81=D0=B8=D0=BC=20=D0=A1=D0=BF=D0=B8?= =?UTF-8?q?=D1=80=D0=BA=D0=BE=D0=B2?= Date: Sun, 30 Nov 2025 19:26:34 +0400 Subject: [PATCH] Fix `IntMaskOfTest::testToString()` --- tests/unit/PseudoTypes/IntMaskOfTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/PseudoTypes/IntMaskOfTest.php b/tests/unit/PseudoTypes/IntMaskOfTest.php index 14d8135e..18789d43 100644 --- a/tests/unit/PseudoTypes/IntMaskOfTest.php +++ b/tests/unit/PseudoTypes/IntMaskOfTest.php @@ -28,8 +28,8 @@ public function testCreate(): void */ public function testToString(): void { - $type = new IntMask(new Compound([new IntegerValue(1), new IntegerValue(5), new IntegerValue(10)])); + $type = new IntMaskOf(new Compound([new IntegerValue(1), new IntegerValue(5), new IntegerValue(10)])); - $this->assertSame('int-mask<1|5|10>', (string) $type); + $this->assertSame('int-mask-of<1|5|10>', (string) $type); } }