Skip to content

Commit e3381b0

Browse files
authored
Merge pull request #246 from mspirkov/fix-test
Fix `IntMaskOfTest::testToString()`
2 parents 6bbafc5 + 2946e56 commit e3381b0

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)