Skip to content

Commit a117160

Browse files
committed
set default if no env
1 parent e391edd commit a117160

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/TestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ protected function getEnvironmentSetup($app)
1414
$app->bootstrapWith([LoadEnvironmentVariables::class]);
1515
parent::getEnvironmentSetUp($app);
1616

17-
$app['config']->set('cloudinary.cloud_url', env('CLOUDINARY_URL'));
17+
$app['config']->set('cloudinary.cloud_url', env('CLOUDINARY_URL', 'cloudinary://foo:bar@baz'));
1818
}
1919

2020
protected function getPackageProviders($app)

0 commit comments

Comments
 (0)