Skip to content

Commit 993eb58

Browse files
authored
Update StyleTest.php
1 parent c76ab02 commit 993eb58

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

tests/PhpWordTests/Writer/RTF/StyleTest.php

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -70,20 +70,6 @@ public function testBorderWithNonRegisteredColors(): void
7070
self::assertEquals($expected, $content);
7171
}
7272

73-
public function testIndentation(): void
74-
{
75-
$indentation = new \PhpOffice\PhpWord\Style\Indentation();
76-
$indentation->setLeft(1);
77-
$indentation->setRight(2);
78-
$indentation->setFirstLine(3);
79-
80-
$indentWriter = new RTF\Style\Indentation($indentation);
81-
$indentWriter->setParentWriter(new RTF());
82-
$result = $indentWriter->write();
83-
84-
Assert::assertEquals('\fi3\li1\ri2 ', $result);
85-
}
86-
8773
public function testRightTab(): void
8874
{
8975
$tabRight = new \PhpOffice\PhpWord\Style\Tab();

0 commit comments

Comments
 (0)