mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-24 22:48:18 +00:00
More cleanup.
This commit is contained in:
@@ -20,9 +20,9 @@ class HelpControllerTest extends TestCase
|
||||
public function testShow()
|
||||
{
|
||||
$this->be($this->user());
|
||||
$response = $this->call('GET', '/help/index');
|
||||
$this->call('GET', '/help/index');
|
||||
|
||||
$this->assertEquals(200, $response->status());
|
||||
$this->assertResponseStatus(200);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -31,8 +31,8 @@ class HelpControllerTest extends TestCase
|
||||
public function testShowNoRoute()
|
||||
{
|
||||
$this->be($this->user());
|
||||
$response = $this->call('GET', '/help/indxxex');
|
||||
$this->call('GET', '/help/indxxex');
|
||||
|
||||
$this->assertEquals(200, $response->status());
|
||||
$this->assertResponseStatus(200);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user