mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-29 18:20:01 +00:00
Test code cleanup.
This commit is contained in:
@@ -74,7 +74,6 @@ class AuthControllerTest extends TestCase
|
||||
'email' => 'thegrumpydictator@gmail.com',
|
||||
'password' => 'james',
|
||||
'remember' => 1,
|
||||
'_token' => Session::token(),
|
||||
];
|
||||
$response = $this->call('POST', '/login', $args);
|
||||
$this->assertEquals(302, $response->status());
|
||||
@@ -94,7 +93,6 @@ class AuthControllerTest extends TestCase
|
||||
'email' => 'thegrumpydictator+test@gmail.com',
|
||||
'password' => 'james123',
|
||||
'password_confirmation' => 'james123',
|
||||
'_token' => Session::token(),
|
||||
];
|
||||
$response = $this->call('POST', '/register', $args);
|
||||
$this->assertEquals(302, $response->status());
|
||||
|
@@ -19,7 +19,6 @@ class PasswordControllerTest extends TestCase
|
||||
{
|
||||
$args = [
|
||||
'email' => 'thegrumpydictator@gmail.com',
|
||||
'_token' => Session::token(),
|
||||
];
|
||||
$response = $this->call('POST', '/password/email', $args);
|
||||
$this->assertEquals(302, $response->status());
|
||||
|
Reference in New Issue
Block a user