Skip to content

Commit

Permalink
Merge branch 'main' of github.com:ronnorthrip/dbpull
Browse files Browse the repository at this point in the history
  • Loading branch information
ronnorthrip committed Mar 14, 2024
2 parents 917087c + 50971fb commit b708999
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ protected function getPackageProviders($app)
public function getEnvironmentSetUp($app)
{
$connection = [
'driver' => env('DB_CONNECTION','mysql'),
'host' => env('DB_HOST','127.0.0.1'),
'port' => env('DB_PORT','3306'),
'database' => env('DB_DATABASE','dbpull_test'),
'username' => env('DB_USERNAME','root'),
'driver' => env('DB_CONNECTION', 'mysql'),
'host' => env('DB_HOST', '127.0.0.1'),
'port' => env('DB_PORT', '3306'),
'database' => env('DB_DATABASE', 'dbpull_test'),
'username' => env('DB_USERNAME', 'root'),
];
if (env('DB_PASSWORD')) {
$connection['password'] = env('DB_PASSWORD');
Expand Down

0 comments on commit b708999

Please sign in to comment.