We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0c5d85 commit b1b67beCopy full SHA for b1b67be
1 file changed
Tests/Controller/EmptyConfTest.php
@@ -15,14 +15,17 @@ public function setUp(): void
15
public function testUndefinedConfManager()
16
{
17
$this->getManagerPage();
18
+
19
$content = html_entity_decode(
20
$this->client->getResponse()->getContent(),
21
ENT_QUOTES | ENT_HTML5
22
);
23
24
$this->assertStringContainsString(
- $content,
- $this->client->getResponse()->getContent()
25
+ 'Please define a "dir" or a "service" parameter in your config.yml',
26
+ $content
27
28
29
$this->assertSame(
30
Response::HTTP_INTERNAL_SERVER_ERROR,
31
$this->client->getResponse()->getStatusCode()
0 commit comments