Skip to content

Commit

Permalink
Merge pull request #3287 from sideffect0/2.4
Browse files Browse the repository at this point in the history
grep -rl "test\.com" . | xargs sed -i 's/test.com/example.com/g'
  • Loading branch information
jbrooksuk committed Dec 27, 2018
2 parents 98edf82 + 80d0e6f commit df5ade6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

- **Username:** `test` or `test@test.com`
- **Username:** `test` or `test@example.com`
- **Password:** `test123`

> The demo resets every 30 minutes.
Expand Down
2 changes: 1 addition & 1 deletion app/Console/Commands/DemoSeederCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ protected function seedUsers()
[
'username' => 'test',
'password' => 'test123',
'email' => 'test@test.com',
'email' => 'test@example.com',
'level' => User::LEVEL_ADMIN,
'api_key' => '9yMHsdioQosnyVK4iCVR',
],
Expand Down
2 changes: 1 addition & 1 deletion docs/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Psy Shell v0.8.8 (PHP 7.1.6 — cli) by Justin Hileman
=> CachetHQ\Cachet\Models\User {#865
id: 1,
username: "test",
email: "test@test.com",
email: "test@example.com",
api_key: "9yMHsdioQosnyVK4iCVR",
active: 1,
level: 1,
Expand Down
2 changes: 1 addition & 1 deletion tests/Bus/Commands/User/CreateUserCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ protected function getObjectAndParams()
$params = [
'username' => 'Test',
'password' => 'fooey',
'email' => 'test@test.com',
'email' => 'test@example.com',
'level' => 1,
];

Expand Down
2 changes: 1 addition & 1 deletion tests/Bus/Commands/User/SignupUserCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ protected function getObjectAndParams()
$params = [
'username' => 'Test',
'password' => 'fooey',
'email' => 'test@test.com',
'email' => 'test@example.com',
'level' => 1,
];

Expand Down

0 comments on commit df5ade6

Please sign in to comment.