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:
@@ -22,8 +22,8 @@ class ChartReportControllerTest extends TestCase
|
||||
$repository->shouldReceive('earnedPerMonth')->once()->andReturn([]);
|
||||
|
||||
$this->be($this->user());
|
||||
$response = $this->call('GET', '/chart/report/in-out/default/20150101/20151231/1');
|
||||
$this->assertEquals(200, $response->status());
|
||||
$this->call('GET', '/chart/report/in-out/default/20150101/20151231/1');
|
||||
$this->assertResponseStatus(200);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -36,7 +36,7 @@ class ChartReportControllerTest extends TestCase
|
||||
$repository->shouldReceive('earnedPerMonth')->once()->andReturn([]);
|
||||
|
||||
$this->be($this->user());
|
||||
$response = $this->call('GET', '/chart/report/in-out-sum/default/20150101/20151231/1');
|
||||
$this->assertEquals(200, $response->status());
|
||||
$this->call('GET', '/chart/report/in-out-sum/default/20150101/20151231/1');
|
||||
$this->assertResponseStatus(200);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user