Skip to content

Commit

Permalink
Remove charset on json content-type
Browse files Browse the repository at this point in the history
  • Loading branch information
odan committed Nov 15, 2019
1 parent 2e53489 commit 85918cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/ResponseTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@ public function testWithJson()

$this->assertNotEquals($response->getStatusCode(), $originalResponse->getStatusCode());
$this->assertEquals(201, $response->getStatusCode());
$this->assertEquals('application/json;charset=utf-8', $response->getHeaderLine('Content-Type'));
$this->assertEquals('application/json', $response->getHeaderLine('Content-Type'));

$body = $response->getBody();
$body->rewind();
Expand Down

0 comments on commit 85918cb

Please sign in to comment.