Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hedii committed Apr 4, 2020
1 parent c162686 commit 9575fa4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/RecaptchaTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ protected function getPackageProviders($app): array

protected function getEnvironmentSetUp($app): void
{
$app['config']->set('recaptcha.site_key', env('RECAPTCHA_SITE_KEY'));
$app['config']->set('recaptcha.site_secret', env('RECAPTCHA_SECRET_KEY'));
$app['config']->set('recaptcha.minimum_score', env('RECAPTCHA_MINIMUM_SCORE'));
$app['config']->set('recaptcha.site_key', env('RECAPTCHA_SITE_KEY', ''));
$app['config']->set('recaptcha.secret_key', env('RECAPTCHA_SECRET_KEY', ''));
$app['config']->set('recaptcha.minimum_score', env('RECAPTCHA_MINIMUM_SCORE', 0.7));
}

/** @test */
Expand Down

0 comments on commit 9575fa4

Please sign in to comment.