1 parent e3ffa2f commit 8004c8fCopy full SHA for 8004c8f
1 file changed
test/PhpParser/PrettyPrinterTest.php
@@ -327,11 +327,4 @@ public function testInvalidIndent(): void {
327
$this->expectExceptionMessage('Option "indent" must either be all spaces or a single tab');
328
new PrettyPrinter\Standard(['indent' => "\t "]);
329
}
330
-
331
- public function testPrintCustomRawValue(): void {
332
- $prettyPrinter = new PrettyPrinter\Standard();
333
- $node = new Int_(1000, ['rawValue' => '10_00', 'shouldPrintRawValue' => true]);
334
335
- $this->assertSame('10_00', $prettyPrinter->prettyPrintExpr($node));
336
- }
337
0 commit comments