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