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

From test.com to example.com
This commit is contained in:
sideffect0
2018-10-18 14:52:09 +05:30
parent 8cc92b1d7d
commit a91a9a9b05
5 changed files with 5 additions and 5 deletions

View File

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

View File

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