Skip to content

Commit 8004c8f

Browse files
Remove redundant test
1 parent e3ffa2f commit 8004c8f

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

test/PhpParser/PrettyPrinterTest.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -327,11 +327,4 @@ public function testInvalidIndent(): void {
327327
$this->expectExceptionMessage('Option "indent" must either be all spaces or a single tab');
328328
new PrettyPrinter\Standard(['indent' => "\t "]);
329329
}
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-
}
337330
}

0 commit comments

Comments
 (0)