Merge pull request #3287 from sideffect0/2.4

grep -rl "test\.com" . | xargs sed -i 's/test.com/example.com/g'
This commit is contained in:
James Brooks
2018-12-27 22:55:23 +00:00
committed by GitHub
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,
];