mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
More cleanup.
This commit is contained in:
@@ -19,9 +19,9 @@ class ChartBillControllerTest extends TestCase
|
||||
public function testFrontpage()
|
||||
{
|
||||
$this->be($this->user());
|
||||
$response = $this->call('GET', '/chart/bill/frontpage');
|
||||
$this->call('GET', '/chart/bill/frontpage');
|
||||
|
||||
$this->assertEquals(200, $response->status());
|
||||
$this->assertResponseStatus(200);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -30,8 +30,8 @@ class ChartBillControllerTest extends TestCase
|
||||
public function testSingle()
|
||||
{
|
||||
$this->be($this->user());
|
||||
$response = $this->call('GET', '/chart/bill/1');
|
||||
$this->call('GET', '/chart/bill/1');
|
||||
|
||||
$this->assertEquals(200, $response->status());
|
||||
$this->assertResponseStatus(200);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user