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

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