We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
IntMaskOfTest::testToString()
1 parent c3f3e44 commit 2946e56Copy full SHA for 2946e56
tests/unit/PseudoTypes/IntMaskOfTest.php
@@ -28,8 +28,8 @@ public function testCreate(): void
28
*/
29
public function testToString(): void
30
{
31
- $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)]));
32
33
- $this->assertSame('int-mask<1|5|10>', (string) $type);
+ $this->assertSame('int-mask-of<1|5|10>', (string) $type);
34
}
35
0 commit comments