Skip to content

Commit 2946e56

Browse files
committed
Fix IntMaskOfTest::testToString()
1 parent c3f3e44 commit 2946e56

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unit/PseudoTypes/IntMaskOfTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ public function testCreate(): void
2828
*/
2929
public function testToString(): void
3030
{
31-
$type = new IntMask(new Compound([new IntegerValue(1), new IntegerValue(5), new IntegerValue(10)]));
31+
$type = new IntMaskOf(new Compound([new IntegerValue(1), new IntegerValue(5), new IntegerValue(10)]));
3232

33-
$this->assertSame('int-mask<1|5|10>', (string) $type);
33+
$this->assertSame('int-mask-of<1|5|10>', (string) $type);
3434
}
3535
}

0 commit comments

Comments
 (0)