Skip to content

Commit

Permalink
Update example in readme for Slim 3
Browse files Browse the repository at this point in the history
  • Loading branch information
danmichaelo committed Aug 7, 2016
1 parent bb75f9b commit 6c3e622
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ class VersionTest extends LocalWebTestCase
public function testVersion()
{
$this->client->get('/version');
$this->assertEquals(200, $this->client->response->status());
$this->assertEquals($this->app->config('version'), $this->client->response->body());
$this->assertEquals(200, $this->client->response->getStatusCode());
$this->assertEquals($this->app->config('version'), $this->client->response->getBody());
}
}
```
Expand Down

0 comments on commit 6c3e622

Please sign in to comment.