diff --git a/README.md b/README.md index dce7150b6e08..22f280b854eb 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/app/Console/Commands/DemoSeederCommand.php b/app/Console/Commands/DemoSeederCommand.php index 811be7af2eae..e806c31cd98b 100644 --- a/app/Console/Commands/DemoSeederCommand.php +++ b/app/Console/Commands/DemoSeederCommand.php @@ -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', ], diff --git a/docs/faq.md b/docs/faq.md index 42a8eb1a4511..2ac2e314742a 100644 --- a/docs/faq.md +++ b/docs/faq.md @@ -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, diff --git a/tests/Bus/Commands/User/CreateUserCommandTest.php b/tests/Bus/Commands/User/CreateUserCommandTest.php index 3a4b8be19e60..7f5a195015d2 100644 --- a/tests/Bus/Commands/User/CreateUserCommandTest.php +++ b/tests/Bus/Commands/User/CreateUserCommandTest.php @@ -31,7 +31,7 @@ protected function getObjectAndParams() $params = [ 'username' => 'Test', 'password' => 'fooey', - 'email' => 'test@test.com', + 'email' => 'test@example.com', 'level' => 1, ]; diff --git a/tests/Bus/Commands/User/SignupUserCommandTest.php b/tests/Bus/Commands/User/SignupUserCommandTest.php index 5ef7e06da657..187ef5060d73 100644 --- a/tests/Bus/Commands/User/SignupUserCommandTest.php +++ b/tests/Bus/Commands/User/SignupUserCommandTest.php @@ -30,7 +30,7 @@ protected function getObjectAndParams() $params = [ 'username' => 'Test', 'password' => 'fooey', - 'email' => 'test@test.com', + 'email' => 'test@example.com', 'level' => 1, ];