Skip to content

Commit

Permalink
Merge branch '4.3' into 4.4
Browse files Browse the repository at this point in the history
* 4.3:
  Fix more bad tests
  Fix test fixtures with deprecated method signatures.
  Fix 4.3 tests forward compat
  [Messenger] fix empty amqp body returned as false
  Fix routing cache broken when using generator_class
  • Loading branch information
nicolas-grekas committed Sep 6, 2019
2 parents 8eb46b5 + aa3cd52 commit 20a11a0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions Tests/Functional/MissingUserProviderTest.php
Expand Up @@ -24,6 +24,7 @@ public function testUserProviderIsNeeded()

$response = $client->getResponse();
$this->assertSame(500, $response->getStatusCode());
$this->stringContains('Symfony\Component\Config\Definition\Exception\InvalidConfigurationException', $response->getContent());
$this->stringContains('"default" firewall requires a user provider but none was defined.', $response->getContent());
}
}
1 change: 1 addition & 0 deletions Tests/Functional/app/MissingUserProvider/bundles.php
Expand Up @@ -16,5 +16,6 @@
return [
new FrameworkBundle(),
new SecurityBundle(),
new Symfony\Bundle\TwigBundle\TwigBundle(),
new MissingUserProviderBundle(),
];
2 changes: 1 addition & 1 deletion Tests/Functional/app/MissingUserProvider/config.yml
@@ -1,5 +1,5 @@
imports:
- { resource: ./../config/framework.yml }
- { resource: ./../config/default.yml }

security:
firewalls:
Expand Down

0 comments on commit 20a11a0

Please sign in to comment.