From a91a9a9b0551c83b62fd3f3cd2258c88f9e09ec7 Mon Sep 17 00:00:00 2001 From: sideffect0 Date: Thu, 18 Oct 2018 14:52:09 +0530 Subject: [PATCH] grep -rl "test\.com" . | xargs sed -i 's/test.com/example.com/g' From test.com to example.com --- README.md | 2 +- app/Console/Commands/DemoSeederCommand.php | 2 +- docs/faq.md | 2 +- tests/Bus/Commands/User/CreateUserCommandTest.php | 2 +- tests/Bus/Commands/User/SignupUserCommandTest.php | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e673f60a5108..b72d9c353bda 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, ];