Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

grep -rl "test\.com" . | xargs sed -i 's/test.com/example.com/g' #3287

Merged
merged 12 commits into from
Dec 27, 2018
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