Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxim Solovev committed Jun 14, 2024
1 parent 7cb6fb1 commit fddf99c
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tests/Unit/DependencyInjection/ConfigurationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,11 @@ class ConfigurationTest extends AbstractExtensionConfigurationTestCase
'enabled' => false,
'only_server_exception' => false,
],
'throttle' => [
'enabled' => false,
'tokens' => 1,
'max_time' => null,
],
],
'discovery' => [
'client' => 'auto',
Expand Down Expand Up @@ -308,6 +313,12 @@ public function testSupportsAllConfigFormats(): void
'enabled' => false,
'only_server_exception' => false,
],
'throttle' => [
'enabled' => false,
'name' => 'limit',
'tokens' => 1,
'max_time' => null,
],
],
'discovery' => [
'client' => 'auto',
Expand Down

0 comments on commit fddf99c

Please sign in to comment.