More cleanup.

This commit is contained in:
James Cole
2016-01-24 18:11:57 +01:00
parent 7b2fe8eb4a
commit a013553a6c
18 changed files with 227 additions and 225 deletions

View File

@@ -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);
}
}