Skip to content

Commit e4c60bd

Browse files
author
Bryan Ashley
committed
retry with pass
1 parent d22de8c commit e4c60bd

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.circleci/config.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ jobs:
66
- image: circleci/mysql:5.7
77
environment:
88
- MYSQL_USER=mutate
9-
- MYSQL_PASSWORD=
10-
- MYSQL_ALLOW_EMPTY_PASSWORD=true
9+
- MYSQL_PASSWORD=secret
1110
- MYSQL_DATABASE=circle-test
1211
working_directory: ~/laravel-mutate
1312
steps:

tests/Integration/BelongsToManyMutatedTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ protected function getEnvironmentSetUp($app)
2929
'port' => env('DB_PORT', '3306'),
3030
'database' => env('DB_DATABASE', 'circle-test'),
3131
'username' => env('DB_USERNAME', 'mutate'),
32-
'password' => env('DB_PASSWORD', ''),
32+
'password' => env('DB_PASSWORD', 'secret'),
3333
'unix_socket' => env('DB_SOCKET', ''),
3434
'charset' => 'utf8mb4',
3535
'collation' => 'utf8mb4_unicode_ci',

0 commit comments

Comments
 (0)