Fix loadconfix exceptions

This commit is contained in:
Joseph Cohen
2015-03-21 02:52:59 -06:00
parent 09e83ab689
commit 44ac45fc6b
2 changed files with 7 additions and 7 deletions

View File

@@ -9,8 +9,8 @@ class ExampleTest extends TestCase
*/
public function testBasicExample()
{
$response = $this->call('GET', '/');
$true = true;
$this->assertEquals(200, $response->getStatusCode());
$this->assertTrue($true);
}
}