Skip to content

Commit c609fa3

Browse files
committed
Invalid Annotation in Test Member
PhpUnit cannot parse the `@covers` lines in FormulaTest; they result in warnings in Coverage and Deploy tests. This PR fixes them; no change log entry should be needed.
1 parent 9bf816b commit c609fa3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/PhpWordTests/Element/FormulaTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
class FormulaTest extends AbstractWebServerEmbeddedTest
3131
{
3232
/**
33-
* @covers \Formula::__construct
33+
* @covers \PhpOffice\PhpWord\Element\Formula::__construct
3434
*/
3535
public function testConstruct(): void
3636
{
@@ -40,8 +40,8 @@ public function testConstruct(): void
4040
}
4141

4242
/**
43-
* @covers \Formula::getMath
44-
* @covers \Formula::setMath
43+
* @covers \PhpOffice\PhpWord\Element\Formula::getMath
44+
* @covers \PhpOffice\PhpWord\Element\Formula::setMath
4545
*/
4646
public function testMath(): void
4747
{

0 commit comments

Comments
 (0)