Fixed failing test

This commit is contained in:
Chris Kankiewicz
2021-06-20 21:39:40 -07:00
parent 7926f9048a
commit ec0fcaad47

View File

@@ -35,7 +35,7 @@ class CacheMiddlewareTest extends TestCase
$response = (new CacheMiddleware($this->config))($this->request, $this->handler);
$this->assertEquals(['max-age=0, must-revalidate'], $response->getHeader('Cache-Control'));
$this->assertEquals(['max-age=0'], $response->getHeader('Cache-Control'));
}
public function test_it_adds_a_response_cache_header_for_a_pre_configured_http_cache_option(): void