Skip to content

Commit 143f9c4

Browse files
committed
Fixing some tests
1 parent 9ca12a7 commit 143f9c4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/Command/BuildDocsCommandTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
class BuildDocsCommandTest extends TestCase
1414
{
15-
public function testBuildDocsFoo()
15+
public function testBuildDocsDefault()
1616
{
1717
$buildContext = $this->createBuildContext();
1818
$outputDir = __DIR__.'/../_output';
@@ -29,7 +29,7 @@ public function testBuildDocsFoo()
2929
]
3030
);
3131

32-
$this->assertContains('[OK] Parse process complete', $output);
32+
$this->assertContains('[OK] Build complete', $output);
3333

3434
$this->assertTrue($filesystem->exists(sprintf('%s/_images/symfony-logo.png', $outputDir)));
3535

@@ -40,7 +40,7 @@ public function testBuildDocsFoo()
4040
'output-dir' => $outputDir,
4141
]
4242
);
43-
$this->assertContains('[OK] Parse process complete', $output);
43+
$this->assertContains('[OK] Build complete', $output);
4444
}
4545

4646
public function testBuildDocsForPdf()
@@ -78,7 +78,7 @@ public function testBuildDocsForPdf()
7878
$indenter->indent(file_get_contents(sprintf('%s/book.html', $outputDir)))
7979
);
8080

81-
$this->assertContains('[OK] Parse process complete', $output);
81+
$this->assertContains('[OK] Build complete', $output);
8282
}
8383

8484
private function executeCommand(BuildContext $buildContext, array $input): string

0 commit comments

Comments
 (0)