Skip to content

Commit

Permalink
Adds test condition
Browse files Browse the repository at this point in the history
  • Loading branch information
specialtactics committed May 2, 2021
1 parent 0d8b661 commit 0614df9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/Http/Response/FactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ public function testMakingANoContentResponse()
$response = $this->factory->noContent();
$this->assertSame(204, $response->getStatusCode());
$this->assertSame('', $response->getContent());
$this->assertNull($response->headers->get('Content-Type'));
}

public function testMakingCollectionRegistersUnderlyingClassWithTransformer()
Expand Down

0 comments on commit 0614df9

Please sign in to comment.