Skip to content

Commit

Permalink
Fix FunctionalTestCase
Browse files Browse the repository at this point in the history
  • Loading branch information
odolbeau committed Apr 11, 2024
1 parent f7a3862 commit bedd466
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Functional/FunctionalTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ protected function getClient(): ?HelloassoClient
{
$clientId = getenv('HELLOASSO_CLIENT_ID');
$clientSecret = getenv('HELLOASSO_CLIENT_SECRET');
$organisationSlug = getenv('HELLOASSO_ORGANISATION') ? getenv('HELLOASSO_ORGANISATION_SLUG') : 'helloasso-php-sdk';
$organisationSlug = false !== getenv('HELLOASSO_ORGANISATION') ? getenv('HELLOASSO_ORGANISATION') : 'helloasso-php-sdk';

if (empty($clientId) || empty($clientSecret)) {
$this->markTestSkipped();
Expand Down

0 comments on commit bedd466

Please sign in to comment.