diff --git a/tests/Http/Response/FactoryTest.php b/tests/Http/Response/FactoryTest.php index aa9ae16ac..35fc2d998 100644 --- a/tests/Http/Response/FactoryTest.php +++ b/tests/Http/Response/FactoryTest.php @@ -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()