From 284113e9b2c87d6a983d6e8222e1c90628a58810 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 3 May 2010 12:19:08 +0200 Subject: [PATCH] [RequestHandler] fixed typo --- tests/Symfony/Tests/Components/RequestHandler/ResponseTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Symfony/Tests/Components/RequestHandler/ResponseTest.php b/tests/Symfony/Tests/Components/RequestHandler/ResponseTest.php index 92313103fa..78bc5c9327 100644 --- a/tests/Symfony/Tests/Components/RequestHandler/ResponseTest.php +++ b/tests/Symfony/Tests/Components/RequestHandler/ResponseTest.php @@ -42,7 +42,7 @@ class ResponseTest extends \PHPUnit_Framework_TestCase $this->assertEquals(0, $now->diff($response->getDate())->format('%s'), '->getDate() returns the date when the header has been modified'); } - public function getMaxAge() + public function testGetMaxAge() { $response = new Response(); $response->headers->set('Cache-Control', 's-maxage=600, max-age=0');