Merge pull request #3287 from sideffect0/2.4

grep -rl "test\.com" . | xargs sed -i 's/test.com/example.com/g'
This commit is contained in:
James Brooks 2018-12-27 22:55:23 +00:00 committed by GitHub
commit df5ade6554
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View File

@ -47,7 +47,7 @@ Here are some useful quick links:
To test out the demo, you may login to the [Dashboard](https://dev.cachethq.io/dashboard) with the following: To test out the demo, you may login to the [Dashboard](https://dev.cachethq.io/dashboard) with the following:
- **Username:** `test` or `test@test.com` - **Username:** `test` or `test@example.com`
- **Password:** `test123` - **Password:** `test123`
> The demo resets every 30 minutes. > The demo resets every 30 minutes.

View File

@ -444,7 +444,7 @@ EINCIDENT;
[ [
'username' => 'test', 'username' => 'test',
'password' => 'test123', 'password' => 'test123',
'email' => 'test@test.com', 'email' => 'test@example.com',
'level' => User::LEVEL_ADMIN, 'level' => User::LEVEL_ADMIN,
'api_key' => '9yMHsdioQosnyVK4iCVR', 'api_key' => '9yMHsdioQosnyVK4iCVR',
], ],

View File

@ -16,7 +16,7 @@ Psy Shell v0.8.8 (PHP 7.1.6 — cli) by Justin Hileman
=> CachetHQ\Cachet\Models\User {#865 => CachetHQ\Cachet\Models\User {#865
id: 1, id: 1,
username: "test", username: "test",
email: "test@test.com", email: "test@example.com",
api_key: "9yMHsdioQosnyVK4iCVR", api_key: "9yMHsdioQosnyVK4iCVR",
active: 1, active: 1,
level: 1, level: 1,

View File

@ -31,7 +31,7 @@ class CreateUserCommandTest extends AbstractTestCase
$params = [ $params = [
'username' => 'Test', 'username' => 'Test',
'password' => 'fooey', 'password' => 'fooey',
'email' => 'test@test.com', 'email' => 'test@example.com',
'level' => 1, 'level' => 1,
]; ];

View File

@ -30,7 +30,7 @@ class SignupUserCommandTest extends AbstractTestCase
$params = [ $params = [
'username' => 'Test', 'username' => 'Test',
'password' => 'fooey', 'password' => 'fooey',
'email' => 'test@test.com', 'email' => 'test@example.com',
'level' => 1, 'level' => 1,
]; ];